GRUB Legacy: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
Line 257:
 
From UEFI specification the EFI bios will try to load & boot from /efi/boot/bootx64.efi on a FAT formated drive. This is for x86_64 plattform.
 
===Configuring===
 
Add a "grub.cfg" file to /efi/boot/gruf.cfg or wherever you like. Make sure to put it where you told grub to look for its files "-p option".
 
To use graphical menu you must also provide a font file. I used unicode.pf2 that i found in /usr/share/grub2 or something.
 
I did like this:
 
set timeout=30
set default=0
#set debug=all
 
loadfont /efi/boot/unicode.pf2
#set gfxmode=1024x768
set gfxmode=auto
set gfxpayload=keep
terminal_output gfxterm
 
background_image -m normal /efi/boot/background.jpg
 
menuentry "Kernel" {
set debug=all
multiboot /kernel32.exe
sleep 5
}
 
===Installing===