From: colepoirier Date: Tue, 21 Apr 2020 21:03:40 +0000 (-0700) Subject: First commit of script that installs host apt dependencies X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3eac68d3a46d32e0fcf14719d8519e5a778a8e48;p=dev-env-setup.git First commit of script that installs host apt dependencies --- 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