diff options
Diffstat (limited to 'documentation/how to run OVMF')
-rw-r--r-- | documentation/how to run OVMF | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/documentation/how to run OVMF b/documentation/how to run OVMF new file mode 100644 index 0000000..9776c9e --- /dev/null +++ b/documentation/how to run OVMF @@ -0,0 +1,17 @@ +- Create a directory for the *.efi applications. The name is "hda-contents" + +1. With qemu-system-x86_64 command: + +- Create OVMF.fd -> rename it to bios.bin + +- Either place it into the same directory from where the command is executed + or specify the path to bios.bin as argument to -L + +run qemu-system-x86_64 -L . -hda fat:hda-contents -net none // TODO not possible to boot into EFI shell + + + +2. With kvm command: + +run sudo kvm -bios OVMF.fd -hda fat:hda-contents -net none // boots into UEFI Shell + |