2018-05-11 21:08:31 +00:00
#!/bin/sh
#
set -e -o pipefail
. /etc/functions
2018-12-06 23:24:28 +00:00
. /tmp/config
2018-05-11 21:08:31 +00:00
2018-05-17 22:31:23 +00:00
mount_usb( ) {
2018-05-11 21:08:31 +00:00
# Mount the USB boot device
2018-05-17 22:31:23 +00:00
if ! grep -q /media /proc/mounts ; then
2020-02-20 04:16:39 +00:00
mount-usb && USB_FAILED = 0 || USB_FAILED = 1
2018-05-17 22:31:23 +00:00
if [ $USB_FAILED -ne 0 ] ; then
2020-02-20 04:16:39 +00:00
whiptail --title 'USB Drive Missing' \
--msgbox "Insert your USB drive and press Enter to continue." 16 60
mount-usb && USB_FAILED = 0 || USB_FAILED = 1
2018-05-17 22:31:23 +00:00
if [ $USB_FAILED -ne 0 ] ; then
2018-05-11 21:08:31 +00:00
whiptail $CONFIG_ERROR_BG_COLOR --title 'ERROR: Mounting /media Failed' \
2020-02-20 04:16:39 +00:00
--msgbox "Unable to mount USB device" 16 60
2018-05-11 21:08:31 +00:00
fi
fi
fi
2018-05-17 22:31:23 +00:00
}
2018-05-11 21:08:31 +00:00
2018-05-17 22:31:23 +00:00
file_selector( ) {
FILE = ""
FILE_LIST = $1
MENU_MSG = ${ 2 :- "Choose the file" }
# create file menu options
if [ ` cat " $FILE_LIST " | wc -l` -gt 0 ] ; then
option = ""
while [ -z " $option " ]
2018-05-11 21:08:31 +00:00
do
2018-05-17 22:31:23 +00:00
MENU_OPTIONS = ""
n = 0
while read option
do
n = ` expr $n + 1`
option = $( echo $option | tr " " "_" )
MENU_OPTIONS = " $MENU_OPTIONS $n ${ option } "
done < $FILE_LIST
2018-05-11 21:08:31 +00:00
2018-05-17 22:31:23 +00:00
MENU_OPTIONS = " $MENU_OPTIONS a Abort "
whiptail --clear --title "Select your File" \
--menu " ${ MENU_MSG } [1- $n , a to abort]: " 20 120 8 \
-- $MENU_OPTIONS \
2>/tmp/whiptail || die "Aborting"
2018-05-11 21:08:31 +00:00
2018-05-17 22:31:23 +00:00
option_index = $( cat /tmp/whiptail)
if [ " $option_index " = "a" ] ; then
option = "a"
return
fi
2018-05-11 21:08:31 +00:00
2018-05-17 22:31:23 +00:00
option = ` head -n $option_index $FILE_LIST | tail -1`
if [ " $option " = = "a" ] ; then
return
fi
done
if [ -n " $option " ] ; then
FILE = $option
fi
else
whiptail $CONFIG_ERROR_BG_COLOR --title 'ERROR: No Files Found' \
--msgbox "No Files found matching the pattern. Aborting." 16 60
exit 1
fi
2018-05-11 21:08:31 +00:00
}
2018-05-17 22:31:23 +00:00
while true; do
unset menu_choice
2019-04-19 21:11:45 +00:00
whiptail --clear --title "Firmware Management Menu" \
2019-08-28 15:47:53 +00:00
--menu "Select the firmware function to perform\n\nRetaining settings copies existing settings to the new firmware:\n* Keeps your GPG keyring\n* Keeps changes to the default /boot device\n\nErasing settings uses the new firmware as-is:\n* Erases any existing GPG keyring\n* Restores firmware to default factory settings\n* Clears out /boot signatures\n\nIf you are just updating your firmware, you probably want to retain\nyour settings." 20 90 10 \
2019-04-19 21:11:45 +00:00
'f' ' Flash the firmware with a new ROM, retain settings' \
'c' ' Flash the firmware with a new ROM, erase settings' \
2018-05-17 22:31:23 +00:00
'x' ' Exit' \
2>/tmp/whiptail || recovery "GUI menu failed"
menu_choice = $( cat /tmp/whiptail)
case " $menu_choice " in
"x" )
exit 0
; ;
2018-05-28 18:38:04 +00:00
f| c )
2018-05-17 22:31:23 +00:00
if ( whiptail --title 'Flash the BIOS with a new ROM' \
--yesno "This requires you insert a USB drive containing:\n* Your BIOS image (*.rom)\n\nAfter you select this file, this program will reflash your BIOS\n\nDo you want to proceed?" 16 90) then
mount_usb
if grep -q /media /proc/mounts ; then
2019-05-19 01:02:05 +00:00
find /media ! -path '*/\.*' -type f -name '*.rom' | sort > /tmp/filelist.txt
2018-05-17 22:31:23 +00:00
file_selector "/tmp/filelist.txt" "Choose the ROM to flash"
if [ " $FILE " = = "" ] ; then
return
else
ROM = $FILE
fi
if ( whiptail --title 'Flash ROM?' \
--yesno " This will replace your old ROM with $ROM \n\nDo you want to proceed? " 16 90) then
2018-05-28 18:38:04 +00:00
if [ " $menu_choice " = = "c" ] ; then
2019-02-08 17:38:38 +00:00
/bin/flash.sh -c " $ROM "
2019-08-28 15:47:53 +00:00
# after flash, /boot signatures are now invalid so go ahead and clear them
if ls /boot/kexec* >/dev/null 2>& 1 ; then
(
mount -o remount,rw /boot 2>/dev/null
rm /boot/kexec* 2>/dev/null
mount -o remount,ro /boot 2>/dev/null
)
fi
2018-05-28 18:38:04 +00:00
else
2019-02-08 17:38:38 +00:00
/bin/flash.sh " $ROM "
2018-05-28 18:38:04 +00:00
fi
2018-05-17 22:31:23 +00:00
whiptail --title 'ROM Flashed Successfully' \
2019-04-19 21:11:45 +00:00
--msgbox " $ROM flashed successfully.\nPress Enter to reboot " 16 60
2018-05-17 22:31:23 +00:00
umount /media
/bin/reboot
else
exit
fi
fi
2018-05-11 21:08:31 +00:00
fi
2018-05-17 22:31:23 +00:00
; ;
esac
2018-05-11 21:08:31 +00:00
2018-05-17 22:31:23 +00:00
done
2018-05-11 21:08:31 +00:00
exit 0