blob: 63933a51b8d97c4f867b96a624e30aca659f99e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!\bin\bash
sudo qemu-system-x86_64 -s -bios ./OVMF.fd \
-hda fat:rw:hda-contents \
-drive if=pflash,format=raw,readonly,file=OVMF_CODE.fd \
-drive if=pflash,format=raw,file=OVMF_VARS.fd \
-net none -debugcon file:debug.log -global isa-debugcon.iobase=0x402 -S
|