isohybrid: Fix xorriso invocation

This commit is contained in:
mintsuki 2021-05-20 23:23:59 +02:00
parent d67ce23b77
commit c940a411cb
2 changed files with 3 additions and 1 deletions

View File

@ -299,7 +299,7 @@ full-hybrid-test:
rm -rf test_image/
mkdir -p test_image/boot
cp -rv bin/* test/* test_image/boot/
xorriso -as mkisofs -b boot/limine-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table -part_like_isohybrid -eltorito-alt-boot -e boot/limine-eltorito-efi.bin -no-emul-boot test_image/ -isohybrid-gpt-basdat -o test.iso
xorriso -as mkisofs -b boot/limine-cd.bin -no-emul-boot -boot-load-size 4 -boot-info-table -part_like_isohybrid --mbr-force-bootable -eltorito-alt-boot -e boot/limine-eltorito-efi.bin -no-emul-boot test_image/ -isohybrid-gpt-basdat -o test.iso
bin/limine-install test.iso
qemu-system-x86_64 -M q35 -L ovmf -bios ovmf/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -cdrom test.iso -debugcon stdio
qemu-system-x86_64 -M q35 -L ovmf -bios ovmf/OVMF.fd -net none -smp 4 -enable-kvm -cpu host -hda test.iso -debugcon stdio

View File

@ -203,8 +203,10 @@ can be made with the following commands:
```
xorriso -as mkisofs -b <relative path of limine-cd.bin> \
-no-emul-boot -boot-load-size 4 -boot-info-table -part_like_isohybrid \
--mbr-force-bootable \
-eltorito-alt-boot -e <relative path of limine-eltorito-efi.bin> \
-no-emul-boot <root directory> -isohybrid-gpt-basdat -o image.iso
limine-install image.iso
```