From: colepoirier Date: Tue, 12 May 2020 19:24:05 +0000 (-0700) Subject: Added more of the required apt dependencies, specified -y option for all X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a0264ad3fd6e6a2071e61dd3975482df5853f07;p=dev-env-setup.git Added more of the required apt dependencies, specified -y option for all apt operations --- diff --git a/install-apt-reqs b/install-apt-reqs index 867c0d3..6fad41a 100755 --- a/install-apt-reqs +++ b/install-apt-reqs @@ -3,7 +3,9 @@ if [ "$EUID" -ne 0 ] then echo "Please run as root" exit fi -apt-get install vim \ +apt-get update -y +apt-get upgrade -y +apt-get install -y vim \ exuberant-ctags \ build-essential \ git \ @@ -15,5 +17,5 @@ apt-get install vim \ gtkwave \ python3-venv \ python-virtualenv \ - gcc-9-powerpc64-linux-gnu \ + gcc-8-powerpc64-linux-gnu \ qemu-system-ppc