diff options
author | Francis Rowe <info@gluglug.org.uk> | 2016-03-03 20:37:46 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2016-03-03 20:37:46 +0100 |
commit | c0da4d71c3f38133914dd14a6400c63ef7547421 (patch) | |
tree | 4e46df315b768b505e5ff60fbb738d79d9792080 /resources/grub | |
parent | 35104a5a1951ef602eb1217dd0dccb6269a26c82 (diff) | |
download | librebootfr-c0da4d71c3f38133914dd14a6400c63ef7547421.tar.gz librebootfr-c0da4d71c3f38133914dd14a6400c63ef7547421.zip |
grub.cfg: don't use wildcards for lvm searches. This is too slow.
Diffstat (limited to 'resources/grub')
-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 094a0fa7..06868c43 100644 --- a/resources/grub/config/menuentries/common.cfg +++ b/resources/grub/config/menuentries/common.cfg @@ -53,7 +53,7 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o # 1) raw devices and MBR/GPT partitions search_grub ahci # 2) LVM and RAID which might be used accross multiple devices - lvm="lvm/*" + lvm="lvm/matrix-rootvol lvm/matrix-boot" raid="md0 md0,1 md0,2 md0,3 md0,4 md0,6 md0,7 md0,8 md0,9" for vol in ${lvm} ${raid}; do try_user_config "(${vol})" |