diff options
author | Regina König | 2020-06-22 19:13:50 +0200 |
---|---|---|
committer | Regina König | 2020-06-22 19:13:50 +0200 |
commit | bec99bb18c55546320263f6a68428b8dd9753357 (patch) | |
tree | 61256b02f01d251a5d4a92bc5be22ba94cdc081e /documentation/how to run OVMF | |
parent | delete old files (diff) | |
download | memtest86-bec99bb18c55546320263f6a68428b8dd9753357.tar.gz memtest86-bec99bb18c55546320263f6a68428b8dd9753357.tar.xz memtest86-bec99bb18c55546320263f6a68428b8dd9753357.zip |
added instructions to run an OVMF.fd
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 + |