我有一个简单的手动创建的grub.cfg
文件,我将其加载到 中grub-mkimage
,然后构建到 iso9660 iso 上的 el torito 映像中。
一切实际上都会启动,但内核选项被完全忽略。
我的grub.cfg
:
set default=0
set timeout=10
set gfxmode=auto
insmod efi_gop
insmod efi_uda
menuentry "MyOS" {
search.fs_label SOMELABEL root
set gfxpayload=keep
linux /boot/vmlinuz quiet
initrd /boot/initrd
}
上面显示了 grub 启动菜单中的一个条目,如果我使用它进行编辑,e
我会看到正确的配置。但它绝对不会传递quiet
到内核。
图片:
grub-mkimage -O x86_64-efi -o EFI/BOOT/BOOTX64.EFI --config=boot/grub/grub.cfg --compression=xz disk part_msdos part_gpt linux loopback normal configfile search search_label true iso9660 efi_uga efi_gop gfxterm gfxmenu gfxterm_menu fat ls cat tar
以及 EFI 启动:
dd if=/dev/zero of=efiboot.img bs=4k count=1000
mkfs.vfat efiboot.img
mount efiboot.img /mnt
cp -r EFI/ /mnt
unmount /mnt
和 iso(忽略 MBR 行):
xorriso -as mkisofs -l -J -R -V SOMELABEL \
-no-emul-boot -boot-load-size 4 -boot-info-table \
-b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat \
-ishybrid-mbr /usr/lib/ISOLINUX/isohdpfx.bin \
-eltorito-alt-boot -e efiboot.img -no-emul-boot -isohybrid-gpt-basdat \
-o some_output.iso .
以上所有内容作为要点:https://gist.github.com/deitch/260bb94ecf7932cb83bdf7024099fdb5
编辑:是的,我确实输入了 grub shellc
并尝试手动输入属性。没有运气。