Skip to content

Instantly share code, notes, and snippets.

@iori-yja
Last active August 29, 2015 14:10
Show Gist options
  • Save iori-yja/c2cdb828057ba71d8f6d to your computer and use it in GitHub Desktop.
Save iori-yja/c2cdb828057ba71d8f6d to your computer and use it in GitHub Desktop.
OVMF notes
NOTE:
The OVMF X64 UEFI image has been moved to /usr/share/ovmf/x64/ovmf_x64.bin
The OVMF IA32 UEFI image has been moved to /usr/share/ovmf/x64/ovmf_ia32.bin
To test OVMF X64 in QEMU (use v1.5+) run:
$ cp /usr/share/ovmf/x64/ovmf_x64.bin ~/ovmf_x64.bin
$ qemu-system-x86_64 -enable-kvm -net none -m 1500 -pflash ~/ovmf_x64.bin
To test OVMF IA32 in QEMU (use v1.5+) run:
$ cp /usr/share/ovmf/ia32/ovmf_ia32.bin ~/ovmf_ia32.bin
$ qemu-system-i386 -enable-kvm -net none -m 1024 -pflash ~/ovmf_ia32.bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment