From 2a384746e40acd924a881631550238f9d73a2d41 Mon Sep 17 00:00:00 2001 From: Kartoffel Date: Mon, 28 Nov 2022 10:02:29 +1030 Subject: [PATCH] Updated to check if the script is run with root. --- tools/helpers/flashall | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tools/helpers/flashall b/tools/helpers/flashall index 4ecf983..1951818 100644 --- a/tools/helpers/flashall +++ b/tools/helpers/flashall @@ -3,12 +3,8 @@ # reboot the modem into fastboot mode # flash kernel + rootfs and reboot echo "Sending AT+QFASTBOOT..." -if command -v doas >> /dev/null; then - root=doas -else - root=sudo -fi -$root sh -c 'echo -ne "AT+QFASTBOOT\r" > /dev/ttyUSB2' +if [ $(id -u) -ne 0 ] ; then echo "This script must be run as root!" ; exit 1 ; fi +sh -c 'echo -ne "AT+QFASTBOOT\r" > /dev/ttyUSB2' fastboot oem stay fastboot flash aboot appsboot.mbn || exit "Failed to flash the bootloader" fastboot reboot