diff options
Diffstat (limited to 'resources/grub')
-rw-r--r-- | resources/grub/config/menuentries/common.cfg | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg index ca8c691c..103d0972 100644 --- a/resources/grub/config/menuentries/common.cfg +++ b/resources/grub/config/menuentries/common.cfg @@ -52,6 +52,7 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o # 1) raw devices and MBR/GPT partitions search_grub ahci + search_grub ata # 2) LVM and RAID which might be used accross multiple devices lvm="lvm/matrix-rootvol lvm/matrix-boot" raid="md/0 md/1 md/2 md/3 md/4 md/5 md/6 md/7 md/8 md/9" @@ -89,6 +90,17 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o fi fi done + + # Last resort (for GA-G41-ES2L which uses IDE emulation mode for SATA) + set root=ata0,1 + for p in / /boot/; do + if [ -f "${p}vmlinuz" ]; then + linux ${p}vmlinuz root=/dev/sda1 rw + if [ -f "${p}initrd.img" ]; then + initrd ${p}initrd.img + fi + fi + done } menuentry 'Search ISOLINUX menu (AHCI) [a]' --hotkey='a' { search_isolinux ahci |