From 9a0264ad3fd6e6a2071e61dd3975482df5853f07 Mon Sep 17 00:00:00 2001 From: colepoirier Date: Tue, 12 May 2020 12:24:05 -0700 Subject: [PATCH] Added more of the required apt dependencies, specified -y option for all apt operations --- install-apt-reqs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 -- 2.30.2