GRUB2: Difference between revisions

From coreboot
Jump to navigation Jump to search
Line 10: Line 10:




== Compiling GRUB2 for being use as a payload (WIP HOWTO) ==
== Compiling GRUB2 for being use as a payload ==
See [[Talk:GRUB2]] and [https://lists.gnu.org/archive/html/grub-devel/2011-06/msg00003.html here] for more details.
See [[Talk:GRUB2]] and [https://lists.gnu.org/archive/html/grub-devel/2011-06/msg00003.html here] for more details.



Revision as of 09:54, 17 February 2013

GRUB2 is a modular, multiboot-capable bootloader for many operating systems that can be used as a payload for coreboot.


Status

  • The mainline version of GRUB2 has a wiki page on the coreboot port (Update: no longer available)
  • Additional information about our former GRUB2 effort (which was part of Google Summer of Code 2007) can be found in the history of this page. Don't expect any link there to work.
  • As an alternative, you could consider using FILO. Both FILO and GRUB2 have various advantages and disadvantages. Which of the two is better suited depends on your requirements.
  • Yet another alternative is to not put GRUB into the BIOS ROM, but have it run from your disk as you would with a vendor BIOS. For that, you can use SeaBIOS as payload, which will then be able to run either GRUB1 or GRUB2 from your disk.


Compiling GRUB2 for being use as a payload

See Talk:GRUB2 and here for more details.

Compiling

bzr branch http://bzr.savannah.gnu.org/r/grub/trunk/grub
cd grub
./autogen.sh
./configure --with-platform=coreboot
make

combining with coreboot (with a memdisk)

cd grub-core
tar cvf ../memdisk.tar serial.mod terminal.mod  normal.mod ahci.mod all_video.mod ata.mod boot.mod cat.mod chain.mod configfile.mod crypto.mod elf.mod  ext2.mod extcmd.mod fshelp.mod linux.mod memdisk.mod minicmd.mod multiboot2.mod pata.mod gettext.mod --transform 's#^#/boot/grub/i386-coreboot/#'
tar uvf ../memdisk.tar grub.cfg  --transform 's#^#/boot/grub/#'
../grub-mkimage -d . -O i386-coreboot -o ../../grub2.elf memdisk tar ehci ohci uhci at_keyboard usb_keyboard -m ../memdisk.tar
ls -l -h ../../grub2.elf

combining with coreboot (without a memdisk)

cd grub-core
memdisk="serial terminal  normal ahci all_video ata boot cat chain configfile crypto elf  ext2 extcmd fshelp help linux memdisk minicmd multiboot2 pata gettext"
../grub-mkimage -d . -O i386-coreboot -o ../../grub2.elf memdisk tar ehci ohci uhci at_keyboard usb_keyboard ${memdisk}
ls -l -h ../../grub2.elf