aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSwift Geek <swiftgeek@gmail.com>2018-05-27 16:00:07 +0000
committerGogs <gogitservice@gmail.com>2018-05-27 16:00:07 +0000
commit0145436838ebaa83c899829f4ee6ac45af5b6960 (patch)
tree17c3da4620163d5c53b1727ab23e24538d92cca5
parentdfe3e32e8861f4941328eca1363355f6514e7393 (diff)
parent030a9f52bfc97d73670223da8813f80fa0f8f129 (diff)
downloadlibrebootfr-0145436838ebaa83c899829f4ee6ac45af5b6960.tar.gz
librebootfr-0145436838ebaa83c899829f4ee6ac45af5b6960.zip
Merge branch 'master' of specing/libreboot into master
-rw-r--r--resources/grub/config/menuentries/common.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg
index d65f86fb..59e1e32e 100644
--- a/resources/grub/config/menuentries/common.cfg
+++ b/resources/grub/config/menuentries/common.cfg
@@ -64,13 +64,13 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o
# on raw crypto devices as well as inside LVM volumes this time.
# The user will be prompted for a passphrase if a LUKS header was found.
- for dev in ahci0 ata0 usb0 ${lvm}; do
+ for dev usb1 usb0 ahci1 ahci0 ata1 ata0 ${lvm}; do
cryptomount "(${dev})"
done
# 3) encrypted devices/partitions
- for i in 0 1; do
+ for i in 1 0; do
for part in 1 2 3 4 5; do
- for type in ahci ata; do
+ for type in usb ahci ata; do
cryptomount "(${type}${i},${part})"
done
done