2017-07-03 17:07:03 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Scan for USB installation options
|
2017-07-12 04:17:45 +00:00
|
|
|
set -e -o pipefail
|
2017-07-03 17:07:03 +00:00
|
|
|
. /etc/functions
|
2020-07-10 18:00:13 +00:00
|
|
|
. /etc/gui_functions
|
2018-12-06 23:24:28 +00:00
|
|
|
. /tmp/config
|
2017-07-03 17:07:03 +00:00
|
|
|
|
2017-07-04 23:49:14 +00:00
|
|
|
# Unmount any previous boot device
|
|
|
|
if grep -q /boot /proc/mounts ; then
|
|
|
|
umount /boot \
|
2017-07-22 20:32:10 +00:00
|
|
|
|| die "Unable to unmount /boot"
|
2017-07-04 23:49:14 +00:00
|
|
|
fi
|
|
|
|
|
2017-07-03 17:07:03 +00:00
|
|
|
# Mount the USB boot device
|
2020-07-10 18:00:13 +00:00
|
|
|
mount_usb || die "Unable to mount /media"
|
|
|
|
|
2020-02-20 04:16:39 +00:00
|
|
|
# Get USB boot device
|
|
|
|
USB_BOOT_DEV=$(grep "/media" /etc/mtab | cut -f 1 -d' ')
|
2017-07-03 17:07:03 +00:00
|
|
|
|
|
|
|
# Check for ISO first
|
|
|
|
get_menu_option() {
|
2018-05-02 21:29:27 +00:00
|
|
|
if [ -x /bin/whiptail ]; then
|
|
|
|
MENU_OPTIONS=""
|
|
|
|
n=0
|
|
|
|
while read option
|
|
|
|
do
|
|
|
|
n=`expr $n + 1`
|
|
|
|
option=$(echo $option | tr " " "_")
|
|
|
|
MENU_OPTIONS="$MENU_OPTIONS $n ${option}"
|
2018-10-22 15:01:05 +00:00
|
|
|
done < /tmp/iso_menu.txt
|
2018-05-02 21:29:27 +00:00
|
|
|
|
2021-09-23 17:56:17 +00:00
|
|
|
whiptail $BG_COLOR_MAIN_MENU --clear --title "Select your ISO boot option" \
|
2022-11-09 16:51:27 +00:00
|
|
|
--menu "Choose the ISO boot option [1-$n, s for standard boot, a to abort]:" 0 80 8 \
|
2018-05-02 21:29:27 +00:00
|
|
|
-- $MENU_OPTIONS \
|
|
|
|
2>/tmp/whiptail || die "Aborting boot attempt"
|
2017-07-03 17:07:03 +00:00
|
|
|
|
2018-05-02 21:29:27 +00:00
|
|
|
option_index=$(cat /tmp/whiptail)
|
|
|
|
else
|
|
|
|
echo "+++ Select your ISO boot option:"
|
|
|
|
n=0
|
|
|
|
while read option
|
|
|
|
do
|
|
|
|
n=`expr $n + 1`
|
|
|
|
echo "$n. $option"
|
|
|
|
done < /tmp/iso_menu.txt
|
|
|
|
|
|
|
|
read \
|
|
|
|
-p "Choose the ISO boot option [1-$n, s for standard boot, a to abort]: " \
|
|
|
|
option_index
|
|
|
|
fi
|
2017-07-03 17:07:03 +00:00
|
|
|
|
|
|
|
if [ "$option_index" = "a" ]; then
|
2017-07-08 20:59:37 +00:00
|
|
|
die "Aborting boot attempt"
|
2017-07-03 17:07:03 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$option_index" = "s" ]; then
|
|
|
|
option=""
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
option=`head -n $option_index /tmp/iso_menu.txt | tail -1`
|
|
|
|
}
|
|
|
|
|
|
|
|
# create ISO menu options
|
2017-07-12 04:17:45 +00:00
|
|
|
ls -1r /media/*.iso 2>/dev/null > /tmp/iso_menu.txt || true
|
2017-07-03 17:07:03 +00:00
|
|
|
if [ `cat /tmp/iso_menu.txt | wc -l` -gt 0 ]; then
|
|
|
|
option_confirm=""
|
|
|
|
while [ -z "$option" -a "$option_index" != "s" ]
|
|
|
|
do
|
|
|
|
get_menu_option
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ -n "$option" ]; then
|
|
|
|
MOUNTED_ISO=$option
|
|
|
|
ISO=${option:7} # remove /media/ to get device relative path
|
2020-02-20 04:16:39 +00:00
|
|
|
kexec-iso-init $MOUNTED_ISO $ISO $USB_BOOT_DEV
|
2017-07-03 17:07:03 +00:00
|
|
|
|
2017-07-08 20:59:37 +00:00
|
|
|
die "Something failed in iso init"
|
2017-07-03 17:07:03 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "!!! Could not find any ISO, trying bootable USB"
|
|
|
|
# Attempt to pull verified config from device
|
2018-05-02 21:29:27 +00:00
|
|
|
if [ -x /bin/whiptail ]; then
|
2019-05-19 01:13:32 +00:00
|
|
|
kexec-select-boot -b /media -c "*.cfg" -u -g -s
|
2018-05-02 21:29:27 +00:00
|
|
|
else
|
2019-05-19 01:13:32 +00:00
|
|
|
kexec-select-boot -b /media -c "*.cfg" -u -s
|
2018-05-02 21:29:27 +00:00
|
|
|
fi
|
2017-07-03 17:07:03 +00:00
|
|
|
|
2017-07-08 20:59:37 +00:00
|
|
|
die "Something failed in selecting boot"
|