diff options
author | Francis Rowe <info@gluglug.org.uk> | 2016-01-02 16:16:07 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2016-01-02 16:16:07 +0000 |
commit | 97e0f1baecbfc5a13ab1626ce1b333f4b26129a9 (patch) | |
tree | 6cccbe383b1d8ac4f001f7522317906af858766f /resources/grub/config | |
parent | 0c651b42de90173206bcbfc5d5aa4e71e973177f (diff) | |
download | librebootfr-97e0f1baecbfc5a13ab1626ce1b333f4b26129a9.tar.gz librebootfr-97e0f1baecbfc5a13ab1626ce1b333f4b26129a9.zip |
grub.cfg: md/X,Y is invalid notation for RAID volumes in GRUB
Diffstat (limited to 'resources/grub/config')
-rw-r--r-- | resources/grub/config/menuentries/common.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg index 39fc1c27..439105ef 100644 --- a/resources/grub/config/menuentries/common.cfg +++ b/resources/grub/config/menuentries/common.cfg @@ -12,7 +12,7 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o # b) Always try LVM before RAID (LVM on (raw) RAID) # c) Try MBR/GPT partitions at last, one might still conviniently uses a single partition - for d in (lvm/*) md/0 (md/0,*) ahci0 ahci1 (ahci0,*) (ahci1,*); do + for d in (lvm/*) md/0 ahci0 ahci1 (ahci0,*) (ahci1,*); do # prompt user for passphrase if LUKS header is found cryptomount ${d} done @@ -23,7 +23,7 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o # 2. Look for user config. If the above routine successfully decrypted a LUKS container, its content # will be searched before everything else for obvious reasons. Regardless of this, the devices' # hirachy stays the same. - for d in crypto0 (crypt0,*) (lvm/*) md/0 (md0/,*) ahci0 ahci1 (ahci0,*) (ahci1,*); do + for d in crypto0 (crypt0,*) (lvm/*) md/0 ahci0 ahci1 (ahci0,*) (ahci1,*); do set root=${d} # a) Check possible file locations... for p in boot/grub/libreboot_ grub/libreboot_ boot/grub/ grub/ boot/grub2 grub2/; do |