Greetings!
(I had a good chatting with some of coreboot developers about more than one year ago, and I really hope I can take part in the bios development, so now I come back to coreboot to contiune my dream of knowing every instruction from the computer boot.)
I'm reading the instructions of building grub2 payloadhttp://grub.enbug.org/CoreBoot, and found it contains something of coreboot-v3:
$ ./grub-mkelfimage -d . $MODULES -o ..../coreboot-v3/payload.elf --prefix='(ata0)/boot/grub' and when I was reading the coreboot manuals, It tells us to use v2, not v3, so I'm wondering should I use the following command instead?
$ ./grub-mkelfimage -d . $MODULES -o ..../coreboot-v2/payload.elf --prefix='(ata0)/boot/grub' thanks!
-dinzi