diff options
author | Regina König | 2020-06-23 02:40:28 +0200 |
---|---|---|
committer | Regina König | 2020-06-23 02:40:28 +0200 |
commit | 2f78856a4241b1c96761c3c0f1de395fdab52f64 (patch) | |
tree | b2f9e15a1371ef69db08485d975b1063c0e92a50 /documentation | |
parent | some informations about EFI_CONFIGURATION_TABLE where SMBIOS table is suppose... (diff) | |
download | memtest86-2f78856a4241b1c96761c3c0f1de395fdab52f64.tar.gz memtest86-2f78856a4241b1c96761c3c0f1de395fdab52f64.tar.xz memtest86-2f78856a4241b1c96761c3c0f1de395fdab52f64.zip |
EFI_GUID struct
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/EFI_GUID | 6 | ||||
-rw-r--r-- | documentation/how to run OVMF | 17 |
2 files changed, 6 insertions, 17 deletions
diff --git a/documentation/EFI_GUID b/documentation/EFI_GUID new file mode 100644 index 0000000..521b083 --- /dev/null +++ b/documentation/EFI_GUID @@ -0,0 +1,6 @@ +typedef struct { +UINT32 Data1 ; +UINT16 Data2 ; +UINT16 Data3 ; +UINT8 Data4[8]; +} EFI_GUID; diff --git a/documentation/how to run OVMF b/documentation/how to run OVMF deleted file mode 100644 index 9776c9e..0000000 --- a/documentation/how to run OVMF +++ /dev/null @@ -1,17 +0,0 @@ -- 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 - |