From 3eac68d3a46d32e0fcf14719d8519e5a778a8e48 Mon Sep 17 00:00:00 2001 From: colepoirier Date: Tue, 21 Apr 2020 14:03:40 -0700 Subject: [PATCH] First commit of script that installs host apt dependencies --- install-apt-reqs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 install-apt-reqs diff --git a/install-apt-reqs b/install-apt-reqs new file mode 100755 index 0000000..867c0d3 --- /dev/null +++ b/install-apt-reqs @@ -0,0 +1,19 @@ +#!/bin/bash +if [ "$EUID" -ne 0 ] + then echo "Please run as root" + exit +fi +apt-get install vim \ + exuberant-ctags \ + build-essential \ + git \ + python3.7 \ + python3.7-dev \ + python3-nose \ + graphviz \ + xdot \ + gtkwave \ + python3-venv \ + python-virtualenv \ + gcc-9-powerpc64-linux-gnu \ + qemu-system-ppc -- 2.30.2