diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-11-05 16:26:45 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-05 16:26:45 +0000 |
commit | 5c057fcada5133ae7c2f24edcf87b6cb122e34fc (patch) | |
tree | 90593539e594ac3943ccf5644e75775026a6c23b /resources/grub/config/menuentries | |
parent | 179b5ba3bedcb632d375014f4cd9249e1f26fdad (diff) | |
download | librebootfr-5c057fcada5133ae7c2f24edcf87b6cb122e34fc.tar.gz librebootfr-5c057fcada5133ae7c2f24edcf87b6cb122e34fc.zip |
grub.cfg: search on usb first, not ahci
Diffstat (limited to 'resources/grub/config/menuentries')
-rw-r--r-- | resources/grub/config/menuentries/common.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg index 0426437c..6b12fc42 100644 --- a/resources/grub/config/menuentries/common.cfg +++ b/resources/grub/config/menuentries/common.cfg @@ -114,7 +114,7 @@ menuentry 'Switch to grubtest.cfg [T]' --hotkey='t' --hotkey='T' { configfile /grubtest.cfg } menuentry 'Search for GRUB configuration (grub.cfg) outside of CBFS [S]' --hotkey='s' --hotkey='S' { - for i in ahci0 ahci1 usb0 usb1; do + for i in usb0 usb1 ahci0 ahci1; do for j in 1 2 3 4 5 6 7 8 9; do x=${i},${j} for p in "grub" "boot/grub" "grub2" "boot/grub2"; do |