bug-grub
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Assortment of Issues with EFI on Mac


From: Jake Thomas
Subject: Re: Assortment of Issues with EFI on Mac
Date: Sat, 4 Feb 2012 02:03:27 -0800 (PST)

Hi. Thought I'd get back on this. Vladimir, you were on to something with the whole UUID thing. When I make both the initial "set root" based off UUID AND the set root of an individual stanza UUID-based, rather than just each stanza being UUID based, I haven't had that black-out bug again. Also I set the timeout to -1.

# BIOS Grub2 config file

set timeout=-1
search --no-floppy --fs-uuid --set=root 9076-CFC3
set debug=video
insmod vbe
loadfont /boot/grub/unicode.pf2
set gfxmode=3488x2228
set gfxmode=keep
insmod gfxterm
terminal_output gfxterm
terminal gfxterm
insmod gettext
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
insmod jpeg
background_image /boot/grub/CH.jpg

menuentry "ArchBang 64-Bit (actually installed)"{
    insmod ext2
    #This is on the 4th partition, BTW.
    search --no-floppy --fs-uuid --set=root 0609b258-e4b3-4741-b77d-862f781ca45d
    #Note: Seems to be a bug that doesn't allow to choose by "root=UUID=[UUID]".
    linux /boot/vmlinuz-linux root=/dev/disk/by-uuid/0609b258-e4b3-4741-b77d-862f781ca45d loglevel=3 ro quiet nomodset
    initrd /boot/initramfs-linux-usb.img
}

menuentry "ArchBang 32-Bit (actually installed)"{
    insmod ext2
    #This is on the 5th partition, BTW.
    search --no-floppy --fs-uuid --set=root 41e2f445-030f-4d6a-b081-0467ad62f06a
    #Note: Seems to be a bug that doesn't allow to choose by "root=UUID=[UUID]".
    linux /boot/vmlinuz-linux root=/dev/disk/by-uuid/41e2f445-030f-4d6a-b081-0467ad62f06a loglevel=3 ro quiet nomodset
    initrd /boot/initramfs-linux-usb-ide.img
}

(and many more)

Jake

reply via email to

[Prev in Thread] Current Thread [Next in Thread]