mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-25 13:29:03 +02:00
grub.cfg: also unroll the list of usb devices
This commit is contained in:
@@ -117,7 +117,7 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o
|
||||
#TODO: Pick better variable name scheme than ${ddev}, or find way to make it local
|
||||
unset ahcidev
|
||||
unset atadev
|
||||
unset usbdev
|
||||
unset usbdev
|
||||
if [ (ahci?) != "(ahci?)" ]; then
|
||||
ahcilist=(ahci*)
|
||||
for part in ${ahcilist}; do
|
||||
@@ -131,7 +131,10 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o
|
||||
done
|
||||
fi
|
||||
if [ (usb?) != "(usb?)" ]; then
|
||||
usbdev=(usb*)
|
||||
usblist=(usb*)
|
||||
for part in ${usblist}; do
|
||||
usbdev="$part $usbdev"
|
||||
done
|
||||
fi
|
||||
set pager=0
|
||||
echo -n "Attempting to cryptomount: "
|
||||
|
||||
Reference in New Issue
Block a user