|
谢谢分享此方法,结合qemu可以模拟出引导效果了。
不过最后这行命令
genisoimage -J -l -allow-lowercase -R -V GRUB2 -joliet-long -no-emul-boot -boot-load-size 4 -boot-info-table -b grub2cd.img -eltorito-alt-boot -b cdefi.img -o grub2.iso iso
是不是应该在cdefi.img后面加上-no-emul-boot参数
我修改成以下命令才能成功生成镜像
genisoimage -J -l -allow-lowercase -R -V GRUB2 -joliet-long -no-emul-boot -boot-load-size 4 -boot-info-table -b $grub2cd_img -eltorito-alt-boot -b $efi_img -no-emul-boot -o $2 $iso
|
|