From b2a52c10a59716004fcf5cdf7e803c025c8965b6 Mon Sep 17 00:00:00 2001 From: Reuben Talbott Date: Tue, 14 Apr 2020 14:25:01 -0400 Subject: [PATCH] Update Flash.sh --- Flash.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Flash.sh b/Flash.sh index 6ef1180..fc51273 100644 --- a/Flash.sh +++ b/Flash.sh @@ -39,17 +39,21 @@ read flavour echo -e "\n Setting up environment" -sudo apt-get -y update -sudo apt-get install curl -y -sudo apt-get install u-boot-tools -y -sudo apt-get -y install \ +sudo apt -y update +sudo apt -y install \ git \ fastboot \ - sunxi-tools \ u-boot-tools \ adb \ u-boot-tools \ android-tools-fastboot \ + u-boot-tools \ + curl \ + wget \ + +wget http://mirrors.kernel.org/ubuntu/pool/universe/s/sunxi-tools/sunxi-tools_1.4.1-1_amd64.deb +sudo dpkg -i sunxi-tools*.deb +sudo rm -rf sunxi-tools*.deb echo -e "\n Adding current user to dialout group" sudo usermod -a -G dialout $(logname)