From 2df038d5f1a841d82ca9bd4123e516fd514921f2 Mon Sep 17 00:00:00 2001 From: Leah Woods Date: Sat, 21 May 2016 02:28:34 -0400 Subject: grub.cfg: Also search on ATA devices (for GA-G41M-ES2L which uses IDE emu) --- (limited to 'resources/grub') diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg index ca8c691..103d097 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 -- cgit v0.9.1