aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2021-07-16 21:43:31 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2021-07-16 21:43:31 +0300
commit70bcb6f8f384991f62a6287ef202d884ad54e0ac (patch)
tree06648e129398bb3bc89ed22dbfcdb2df90a41372 /Lessons
parent713789e49430ca2442ce541bb69bcb8b40487747 (diff)
downloadUEFI-Lessons-70bcb6f8f384991f62a6287ef202d884ad54e0ac.tar.gz
UEFI-Lessons-70bcb6f8f384991f62a6287ef202d884ad54e0ac.tar.bz2
UEFI-Lessons-70bcb6f8f384991f62a6287ef202d884ad54e0ac.zip
Add lesson 41
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'Lessons')
-rw-r--r--Lessons/Lesson_41/README.md476
-rw-r--r--Lessons/Lesson_41/debug.log1622
-rw-r--r--Lessons/Lesson_41/debug_parsed.log1622
3 files changed, 3720 insertions, 0 deletions
diff --git a/Lessons/Lesson_41/README.md b/Lessons/Lesson_41/README.md
new file mode 100644
index 0000000..d3e2f7b
--- /dev/null
+++ b/Lessons/Lesson_41/README.md
@@ -0,0 +1,476 @@
+In this lesson we would talk about the `DEBUG` macro in edk2 codebase. Example of a `DEBUG` macro use:
+```
+DEBUG ((EFI_D_ERROR, "Hello Debug! Check this variable: %d\n", MyVar));
+```
+So the string formatting is similar to the `Print` function, but there are couple of benefits:
+- log levels (`EFI_D_*`) help to categorize log messages. With the configuration through PCD we can easily turn on/off different types of debug messages
+- there can be several implementations of the `DEBUG` functionality. Different UEFI stages/modules can have different `DEBUG` implementations
+
+All predefined log message categories are defined in the https://github.com/tianocore/edk2/blob/master/MdePkg/Include/Library/DebugLib.h
+```
+#define DEBUG_INIT 0x00000001 // Initialization
+#define DEBUG_WARN 0x00000002 // Warnings
+#define DEBUG_LOAD 0x00000004 // Load events
+#define DEBUG_FS 0x00000008 // EFI File system
+#define DEBUG_POOL 0x00000010 // Alloc & Free (pool)
+#define DEBUG_PAGE 0x00000020 // Alloc & Free (page)
+#define DEBUG_INFO 0x00000040 // Informational debug messages
+#define DEBUG_DISPATCH 0x00000080 // PEI/DXE/SMM Dispatchers
+#define DEBUG_VARIABLE 0x00000100 // Variable
+#define DEBUG_BM 0x00000400 // Boot Manager
+#define DEBUG_BLKIO 0x00001000 // BlkIo Driver
+#define DEBUG_NET 0x00004000 // Network Io Driver
+#define DEBUG_UNDI 0x00010000 // UNDI Driver
+#define DEBUG_LOADFILE 0x00020000 // LoadFile
+#define DEBUG_EVENT 0x00080000 // Event messages
+#define DEBUG_GCD 0x00100000 // Global Coherency Database changes
+#define DEBUG_CACHE 0x00200000 // Memory range cachability changes
+#define DEBUG_VERBOSE 0x00400000 // Detailed debug messages that may
+ // significantly impact boot performance
+#define DEBUG_ERROR 0x80000000 // Error
+```
+But generally these alias values are used:
+```
+//
+// Aliases of debug message mask bits
+//
+#define EFI_D_INIT DEBUG_INIT
+#define EFI_D_WARN DEBUG_WARN
+#define EFI_D_LOAD DEBUG_LOAD
+#define EFI_D_FS DEBUG_FS
+#define EFI_D_POOL DEBUG_POOL
+#define EFI_D_PAGE DEBUG_PAGE
+#define EFI_D_INFO DEBUG_INFO
+#define EFI_D_DISPATCH DEBUG_DISPATCH
+#define EFI_D_VARIABLE DEBUG_VARIABLE
+#define EFI_D_BM DEBUG_BM
+#define EFI_D_BLKIO DEBUG_BLKIO
+#define EFI_D_NET DEBUG_NET
+#define EFI_D_UNDI DEBUG_UNDI
+#define EFI_D_LOADFILE DEBUG_LOADFILE
+#define EFI_D_EVENT DEBUG_EVENT
+#define EFI_D_VERBOSE DEBUG_VERBOSE
+#define EFI_D_ERROR DEBUG_ERROR
+```
+
+The DEBUG macro itself is also defined in the `DebugLib` library header (https://github.com/tianocore/edk2/blob/master/MdePkg/Include/Library/DebugLib.h).
+
+If you'll split all the preprocessing hell it generally looks like this when it is used:
+```
+if (DebugPrintEnabled ()) {
+ if (DebugPrintLevelEnabled (PrintLevel)) {
+ DebugPrint (PrintLevel, ##__VA_ARGS__);
+ }
+}
+```
+
+The `DEBUG` macro interface is defined in a `DebugLib` header. But for the actual implementation we need to look at a particular library instance that is used.
+
+If you look at the https://github.com/tianocore/edk2/blob/master/OvmfPkg/OvmfPkgX64.dsc you'll see that:
+- `DebugLib` has different implementations in different UEFI stages
+- `DebugLib` has different implementations based on a `DEBUG_ON_SERIAL_PORT` definition
+```
+[LibraryClasses.common.SEC]
+!ifdef $(DEBUG_ON_SERIAL_PORT)
+ DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
+!else
+ DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformRomDebugLibIoPort.inf
+!endif
+```
+```
+[LibraryClasses.common.PEI_CORE]
+# [LibraryClasses.common.PEIM]
+# [LibraryClasses.common.DXE_CORE]
+# [LibraryClasses.common.DXE_RUNTIME_DRIVER]
+# [LibraryClasses.common.UEFI_DRIVER]
+# [LibraryClasses.common.DXE_DRIVER]
+# [LibraryClasses.common.UEFI_APPLICATION]
+# [LibraryClasses.common.DXE_SMM_DRIVER]
+# [LibraryClasses.common.SMM_CORE]
+!ifdef $(DEBUG_ON_SERIAL_PORT)
+ DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
+!else
+ DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
+!endif
+```
+
+As `DEBUG_ON_SERIAL_PORT` is not defined by default, the main library in our case would be `PlatformDebugLibIoPort` (https://github.com/tianocore/edk2/tree/master/OvmfPkg/Library/PlatformDebugLibIoPort):
+```
+DebugLib|OvmfPkg/Library/PlatformDebugLibIoPort/PlatformDebugLibIoPort.inf
+```
+
+As you remember `DEBUG` macro gets translated to something like:
+```
+if (DebugPrintEnabled ()) {
+ if (DebugPrintLevelEnabled (PrintLevel)) {
+ DebugPrint (PrintLevel, ##__VA_ARGS__);
+ }
+}
+```
+
+Let's look at the https://github.com/tianocore/edk2/blob/master/OvmfPkg/Library/PlatformDebugLibIoPort/DebugLib.c to see how `DebugPrintEnabled`, `DebugPrintLevelEnabled` and `DebugPrint` are implemented.
+
+
+`DEBUG` macro first checks `DebugPrintEnabled` result. This function checks PCD `PcdDebugPropertyMask` if it has `DEBUG_PROPERTY_DEBUG_PRINT_ENABLED` bit set:
+```
+BOOLEAN
+EFIAPI
+DebugPrintEnabled (
+ VOID
+ )
+{
+ return (BOOLEAN) ((PcdGet8(PcdDebugPropertyMask) & DEBUG_PROPERTY_DEBUG_PRINT_ENABLED) != 0);
+}
+```
+Then `DebugPrintLevelEnabled` function checks if passed `ErrorLevel` is present in the PCD `PcdFixedDebugPrintErrorLevel`:
+```
+BOOLEAN
+EFIAPI
+DebugPrintLevelEnabled (
+ IN CONST UINTN ErrorLevel
+ )
+{
+ return (BOOLEAN) ((ErrorLevel & PcdGet32(PcdFixedDebugPrintErrorLevel)) != 0);
+}
+```
+
+Then actual `DebugPrint` function is executed. It simply passes control to `DebugVPrint`:
+```
+VOID
+EFIAPI
+DebugPrint (
+ IN UINTN ErrorLevel,
+ IN CONST CHAR8 *Format,
+ ...
+ )
+{
+ VA_LIST Marker;
+
+ VA_START (Marker, Format);
+ DebugVPrint (ErrorLevel, Format, Marker);
+ VA_END (Marker);
+}
+```
+
+And `DebugVPrint` in turn passes control to `DebugPrintMarker`:
+```
+VOID
+EFIAPI
+DebugVPrint (
+ IN UINTN ErrorLevel,
+ IN CONST CHAR8 *Format,
+ IN VA_LIST VaListMarker
+ )
+{
+ DebugPrintMarker (ErrorLevel, Format, VaListMarker, NULL);
+}
+```
+
+`DebugPrintMarker` is the main debug function. It check if passed `ErrorLevel` is present in `GetDebugPrintErrorLevel()` output and in the end performs write of the debug string to the I/O port defined by PCD `PcdDebugIoPort`:
+```
+VOID
+DebugPrintMarker (
+ IN UINTN ErrorLevel,
+ IN CONST CHAR8 *Format,
+ IN VA_LIST VaListMarker,
+ IN BASE_LIST BaseListMarker
+ )
+{
+ CHAR8 Buffer[MAX_DEBUG_MESSAGE_LENGTH];
+ UINTN Length;
+
+ //
+ // If Format is NULL, then ASSERT().
+ //
+ ASSERT (Format != NULL);
+
+ //
+ // Check if the global mask disables this message or the device is inactive
+ //
+ if ((ErrorLevel & GetDebugPrintErrorLevel ()) == 0 ||
+ !PlatformDebugLibIoPortFound ()) {
+ return;
+ }
+
+ //
+ // Convert the DEBUG() message to an ASCII String
+ //
+ if (BaseListMarker == NULL) {
+ Length = AsciiVSPrint (Buffer, sizeof (Buffer), Format, VaListMarker);
+ } else {
+ Length = AsciiBSPrint (Buffer, sizeof (Buffer), Format, BaseListMarker);
+ }
+
+ //
+ // Send the print string to the debug I/O port
+ //
+ IoWriteFifo8 (PcdGet16 (PcdDebugIoPort), Length, Buffer);
+}
+```
+
+`GetDebugPrintErrorLevel()` is a function from `DebugPrintErrorLevelLib` library. Our `OvmfPkgX64.dsc` defines this implementation for it:
+```
+[LibraryClasses]
+ ...
+ DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.inf
+```
+If you'll look at it sources you'll see that it simply checks for another PCD `PcdDebugPrintErrorLevel` (https://github.com/tianocore/edk2/blob/master/MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.c):
+```
+UINT32
+EFIAPI
+GetDebugPrintErrorLevel (
+ VOID
+ )
+{
+ //
+ // Retrieve the current debug print error level mask from PcdDebugPrintErrorLevel.
+ //
+ return PcdGet32 (PcdDebugPrintErrorLevel);
+}
+```
+
+## Summary:
+The code `DEBUG (( ErrorLevel, String, ... ))` does the following:
+- checks if `PcdDebugPropertyMask` has `DEBUG_PROPERTY_DEBUG_PRINT_ENABLED`
+- checks if passed `ErrorLevel` is set in `PcdFixedDebugPrintErrorLevel`
+- checks if passed `ErrorLevel` is set in `PcdDebugPrintErrorLevel`
+- writes formatted String to I/O port defined by `PcdDebugIoPort`
+
+
+
+# Check if `PcdDebugPropertyMask` has `DEBUG_PROPERTY_DEBUG_PRINT_ENABLED`
+
+OVMF DSC file defines this PCD PcdDebugPropertyMask like this https://github.com/tianocore/edk2/blob/master/OvmfPkg/OvmfPkgX64.dsc:
+```
+[PcdsFixedAtBuild]
+!if $(SOURCE_DEBUG_ENABLE) == TRUE
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x17
+!else
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0x2F
+!endif
+```
+It also redefines this PCD for Shell:
+```
+[Components]
+ ShellPkg/Application/Shell/Shell.inf {
+ ...
+ <PcdsFixedAtBuild>
+ ...
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0xFF
+ }
+```
+
+You can check bit definitions for this PCD in a https://github.com/tianocore/edk2/blob/master/MdePkg/MdePkg.dec:
+```
+## The mask is used to control DebugLib behavior.<BR><BR>
+# BIT0 - Enable Debug Assert.<BR>
+# BIT1 - Enable Debug Print.<BR>
+# BIT2 - Enable Debug Code.<BR>
+# BIT3 - Enable Clear Memory.<BR>
+# BIT4 - Enable BreakPoint as ASSERT.<BR>
+# BIT5 - Enable DeadLoop as ASSERT.<BR>
+# @Prompt Debug Property.
+# @Expression 0x80000002 | (gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask & 0xC0) == 0
+gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask|0|UINT8|0x00000005
+```
+So if the `SOURCE_DEBUG_ENABLE` is:
+- TRUE: these features are enabled: Debug Assert/Debug Print/Debug Code/BreakPoint as ASSERT.
+- FALSE: these features are enabled: Debug Assert/Debug Print/Debug Code/Clear Memory/DeadLoop as ASSERT.
+
+In a `DEBUG` macro we compare this PCD aginst `DEBUG_PROPERTY_DEBUG_PRINT_ENABLED` (https://github.com/tianocore/edk2/blob/master/MdePkg/Include/Library/DebugLib.h):
+```
+//
+// Declare bits for PcdDebugPropertyMask
+//
+#define DEBUG_PROPERTY_DEBUG_ASSERT_ENABLED 0x01
+#define DEBUG_PROPERTY_DEBUG_PRINT_ENABLED 0x02
+#define DEBUG_PROPERTY_DEBUG_CODE_ENABLED 0x04
+#define DEBUG_PROPERTY_CLEAR_MEMORY_ENABLED 0x08
+#define DEBUG_PROPERTY_ASSERT_BREAKPOINT_ENABLED 0x10
+#define DEBUG_PROPERTY_ASSERT_DEADLOOP_ENABLED 0x20
+```
+
+As you can see this check would pass no matter of `SOURCE_DEBUG_ENABLE` setting.
+
+# Checks if passed `ErrorLevel` is set in `PcdFixedDebugPrintErrorLevel`
+
+This PCD is declared in https://github.com/tianocore/edk2/blob/master/MdePkg/MdePkg.dec:
+```
+[PcdsFixedAtBuild]
+ gEfiMdePkgTokenSpaceGuid.PcdFixedDebugPrintErrorLevel|0xFFFFFFFF|UINT32|0x30001016
+```
+
+This PCD is not redefined in the OVMF DSC file, so this is a final value. `0xFFFFFFFF` means that `DEBUG` message would pass this check no matter of its `EFI_D_*` print level.
+
+
+# Checks if passed `ErrorLevel` is set in `PcdDebugPrintErrorLevel`
+
+This PCD is declared in a https://github.com/tianocore/edk2/blob/master/MdePkg/MdePkg.dec
+```
+[PcdsFixedAtBuild]
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000|UINT32|0x00000006
+```
+
+By default it is defined in the `MdePkg.dec` and in the `MdePkg.dsc` as `0x80000000` https://github.com/tianocore/edk2/blob/master/MdePkg/MdePkg.dsc:
+```
+[PcdsFixedAtBuild]
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x80000000
+```
+The `0x80000000` value means that only error messages (`EFI_D_ERROR`) would be printed (ErrorLevel bit definitions again are in https://github.com/tianocore/edk2/blob/master/MdePkg/Include/Library/DebugLib.h).
+
+
+Although when we compile OVMF our main DSC is `OvmfPkgX64.dsc` https://github.com/tianocore/edk2/blob/master/OvmfPkg/OvmfPkgX64.dsc. And this DSC redefines `PcdDebugPrintErrorLevel` PCD:
+```
+[PcdsFixedAtBuild]
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPrintErrorLevel|0x8000004F
+```
+The `0x8000004F` value is equal to: `EFI_D_ERROR | EFI_D_INFO | EFI_D_FS | EFI_D_LOAD | EFI_D_WARN | EFI_D_INIT`.
+
+So it means that when DEBUG statement is enabled, only these categories of messages would be printed.
+
+
+# Writes formatted String to I/O port defined by `PcdDebugIoPort`
+
+The `PcdDebugIoPort` PCD is defined in https://github.com/tianocore/edk2/blob/master/OvmfPkg/OvmfPkg.dec
+```
+[PcdsFixedAtBuild]
+ gUefiOvmfPkgTokenSpaceGuid.PcdDebugIoPort|0x402|UINT16|4
+```
+
+This PCD controls the destination I/O port for the debug messages in `PlatformDebugLibIoPort`
+
+# Testing
+
+To see debug messages we need to recompile OVMF in debug mode.
+
+To do this use:
+```
+build --platform=OvmfPkg/OvmfPkgX64.dsc --arch=X64 --buildtarget=DEBUG --tagname=GCC5
+```
+The build results would be in a folder
+```
+Build/OvmfX64/DEBUG_GCC5
+```
+
+Now let's run QEMU with these parameters:
+```
+qemu-system-x86_64 \
+ -drive if=pflash,format=raw,readonly,file=Build/OvmfX64/DEBUG_GCC5/FV/OVMF.fd \
+ -drive format=raw,file=fat:rw:~/UEFI_disk \
+ -net none \
+ -nographic \
+ -global isa-debugcon.iobase=0x402 \
+ -debugcon file:debug.log
+```
+
+This would create `debug.log` file with all log `DEBUG` messages from OVMF. This file would be recreated every time you run this command.
+
+In a separate terminal window you can run:
+```
+tail -f debug.log
+```
+to follow this file content runtime.
+
+I've included the profuced `debug.log` to the current folder.
+
+
+# Replace GUIDs in a log file
+
+If you start looking at the `debug.log` file, you'll see that it is full of GUIDs:
+```
+$ head debug.log
+SecCoreStartupWithStack(0xFFFCC000, 0x820000)
+Register PPI Notify: DCD0BE23-9586-40F4-B643-06522CED4EDE
+Install PPI: 8C8CE578-8A3D-4F1C-9935-896185C32DD3
+Install PPI: 5473C07A-3DCB-4DCA-BD6F-1E9689E7349A
+The 0th FV start address is 0x00000820000, size is 0x000E0000, handle is 0x820000
+Register PPI Notify: 49EDB1C1-BF21-4761-BB12-EB0031AABB39
+Register PPI Notify: EA7CA24B-DED5-4DAD-A389-BF827E8F9B38
+Install PPI: B9E0ABFE-5979-4914-977F-6DEE78C278A6
+Install PPI: DBE23AA9-A345-4B97-85B6-B226F1617389
+DiscoverPeimsAndOrderWithApriori(): Found 0x7 PEI FFS files in the 0th FV
+```
+It would be nice to replace them with meaningfull text for readability.
+
+Luckily edk2 build system creates a file with names for used GUIDs:
+```
+$ head Build/OvmfX64/DEBUG_GCC5/FV/Guid.xref
+8c1a6b71-0c4b-4497-aaad-07404edf142c PCDLesson
+1BA0062E-C779-4582-8566-336AE8F78F09 ResetVector
+df1ccef6-f301-4a63-9661-fc6030dcc880 SecMain
+52C05B14-0B98-496c-BC3B-04B50211D680 PeiCore
+9B3ADA4F-AE56-4c24-8DEA-F03B7558AE50 PcdPeim
+A3610442-E69F-4DF3-82CA-2360C4031A23 ReportStatusCodeRouterPei
+9D225237-FA01-464C-A949-BAABC02D31D0 StatusCodeHandlerPei
+86D70125-BAA3-4296-A62F-602BEBBB9081 DxeIpl
+222c386d-5abc-4fb4-b124-fbb82488acf4 PlatformPei
+89E549B0-7CFE-449d-9BA3-10D8B2312D71 S3Resume2Pei
+```
+
+Let's create a python app that would parse this file, create a `GUID:NAME` dictionary and use it to replace all GUIDs with their names in a `debug.log` file. The result would be written to the `debug_parsed.log` file:
+```
+from shutil import copyfile
+
+GUIDS_FILE_PATH = "Build/OvmfX64/DEBUG_GCC5/FV/Guid.xref"
+EXTRA_GUIDS_FILE_PATH = ""
+LOG_IN_FILE_PATH = "debug.log"
+LOG_OUT_FILE_PATH = "debug_parsed.log"
+
+guids = {}
+
+with open(GUIDS_FILE_PATH) as p:
+ for line in p:
+ l = line.split(" ")
+ if len(l)==2:
+ guids[l[0].upper()] = l[1][:-1]
+
+if EXTRA_GUIDS_FILE_PATH:
+ with open(EXTRA_GUIDS_FILE_PATH) as p:
+ for line in p:
+ l = line.split(" ")
+ if len(l)==2:
+ guids[l[0].upper()] = l[1][:-1]
+
+copyfile(LOG_IN_FILE_PATH, LOG_OUT_FILE_PATH)
+
+f = open(LOG_OUT_FILE_PATH, 'r')
+filedata = f.read()
+f.close()
+
+for key,val in guids.items():
+ filedata = filedata.replace(key, val)
+
+f = open(LOG_OUT_FILE_PATH, 'w')
+f.write(filedata)
+f.close()
+```
+I've also added a possibility to include another `GUID:NAME` file with a help of `EXTRA_GUIDS_FILE_PATH` variable. This can be usefull if for some reason any guids are not present in the main `Guid.xref` file.
+
+Put this script in edk2 folder and run it with `python` or `python3`:
+```
+python replace_guids.py
+```
+
+Now look at the created `debug_parsed.log` file:
+```
+$ head debug_parsed.log
+SecCoreStartupWithStack(0xFFFCC000, 0x820000)
+Register PPI Notify: gEfiPeiSecurity2PpiGuid
+Install PPI: gEfiFirmwareFileSystem2Guid
+Install PPI: gEfiFirmwareFileSystem3Guid
+The 0th FV start address is 0x00000820000, size is 0x000E0000, handle is 0x820000
+Register PPI Notify: gEfiPeiFirmwareVolumeInfoPpiGuid
+Register PPI Notify: gEfiPeiFirmwareVolumeInfo2PpiGuid
+Install PPI: gEfiPeiLoadFilePpiGuid
+Install PPI: gEfiTemporaryRamSupportPpiGuid
+DiscoverPeimsAndOrderWithApriori(): Found 0x7 PEI FFS files in the 0th FV
+```
+
+It is much easier to read now!
+
+
+
+
+
+
+
diff --git a/Lessons/Lesson_41/debug.log b/Lessons/Lesson_41/debug.log
new file mode 100644
index 0000000..db9a50e
--- /dev/null
+++ b/Lessons/Lesson_41/debug.log
@@ -0,0 +1,1622 @@
+SecCoreStartupWithStack(0xFFFCC000, 0x820000)
+Register PPI Notify: DCD0BE23-9586-40F4-B643-06522CED4EDE
+Install PPI: 8C8CE578-8A3D-4F1C-9935-896185C32DD3
+Install PPI: 5473C07A-3DCB-4DCA-BD6F-1E9689E7349A
+The 0th FV start address is 0x00000820000, size is 0x000E0000, handle is 0x820000
+Register PPI Notify: 49EDB1C1-BF21-4761-BB12-EB0031AABB39
+Register PPI Notify: EA7CA24B-DED5-4DAD-A389-BF827E8F9B38
+Install PPI: B9E0ABFE-5979-4914-977F-6DEE78C278A6
+Install PPI: DBE23AA9-A345-4B97-85B6-B226F1617389
+DiscoverPeimsAndOrderWithApriori(): Found 0x7 PEI FFS files in the 0th FV
+Loading PEIM 9B3ADA4F-AE56-4C24-8DEA-F03B7558AE50
+Loading PEIM at 0x0000082B940 EntryPoint=0x0000082E9EA PcdPeim.efi
+Install PPI: 06E81C58-4AD7-44BC-8390-F10265F72480
+Install PPI: 01F34D25-4DE2-23AD-3FF3-36353FF323F1
+Install PPI: 4D8B155B-C059-4C8F-8926-06FD4331DB8A
+Install PPI: A60C6B59-E459-425D-9C69-0BCC9CB27D81
+Register PPI Notify: 605EA650-C65C-42E1-BA80-91A52AB618C6
+Loading PEIM A3610442-E69F-4DF3-82CA-2360C4031A23
+Loading PEIM at 0x00000830340 EntryPoint=0x00000831607 ReportStatusCodeRouterPei.efi
+Install PPI: 0065D394-9951-4144-82A3-0AFC8579C251
+Install PPI: 229832D3-7A30-4B36-B827-F40CB7D45436
+Loading PEIM 9D225237-FA01-464C-A949-BAABC02D31D0
+Loading PEIM at 0x00000832240 EntryPoint=0x00000833341 StatusCodeHandlerPei.efi
+Loading PEIM 222C386D-5ABC-4FB4-B124-FBB82488ACF4
+Loading PEIM at 0x00000834040 EntryPoint=0x0000083946B PlatformPei.efi
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Platform PEIM Loaded
+CMOS:
+00: 21 00 36 00 18 00 06 16 07 21 26 02 00 80 00 00
+10: 50 00 F0 00 07 80 02 FF FF 2F 00 00 04 10 FF FF
+20: C8 00 04 3F 00 00 00 00 00 00 00 00 00 00 00 00
+30: FF FF 20 00 00 07 00 20 30 00 00 00 00 12 00 00
+40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+Select Item: 0x19
+Select Item: 0x28
+S3 support was detected on QEMU
+Install PPI: 7408D748-FC8C-4EE6-9288-C4BEC092A410
+Select Item: 0x19
+Select Item: 0x25
+Select Item: 0x19
+Select Item: 0x19
+GetFirstNonAddress: Pci64Base=0x800000000 Pci64Size=0x800000000
+Select Item: 0x5
+MaxCpuCountInitialization: QEMU v2.7 reset bug: BootCpuCount=1 Present=0
+MaxCpuCountInitialization: BootCpuCount=0 mMaxCpuCount=1
+PublishPeiMemory: mPhysMemAddressWidth=36 PeiMemoryCap=65800 KB
+PeiInstallPeiMemory MemoryBegin 0x3F36000, MemoryLength 0x4042000
+QemuInitializeRam called
+Select Item: 0x19
+Select Item: 0x25
+Reserved variable store memory: 0x7EF4000; size: 528kb
+Platform PEI Firmware Volume Initialization
+Install PPI: 49EDB1C1-BF21-4761-BB12-EB0031AABB39
+Notify: PPI Guid: 49EDB1C1-BF21-4761-BB12-EB0031AABB39, Peim notify entry point: 825C08
+The 1th FV start address is 0x00000900000, size is 0x00C00000, handle is 0x900000
+Select Item: 0x19
+Register PPI Notify: EE16160A-E8BE-47A6-820A-C6900DB0250A
+Select Item: 0x19
+Temp Stack : BaseAddress=0x818000 Length=0x8000
+Temp Heap : BaseAddress=0x810000 Length=0x8000
+Total temporary memory: 65536 bytes.
+ temporary memory stack ever used: 29560 bytes.
+ temporary memory heap used for HobList: 6608 bytes.
+ temporary memory heap occupied by memory pages: 0 bytes.
+Memory Allocation 0x0000000A 0x7F78000 - 0x7FFFFFF
+Memory Allocation 0x0000000A 0x810000 - 0x81FFFF
+Memory Allocation 0x0000000A 0x807000 - 0x807FFF
+Memory Allocation 0x0000000A 0x800000 - 0x805FFF
+Memory Allocation 0x0000000A 0x806000 - 0x806FFF
+Memory Allocation 0x00000006 0x7EF4000 - 0x7F77FFF
+Memory Allocation 0x0000000A 0x820000 - 0x8FFFFF
+Memory Allocation 0x00000004 0x900000 - 0x14FFFFF
+Old Stack size 32768, New stack size 131072
+Stack Hob: BaseAddress=0x3F36000 Length=0x20000
+Heap Offset = 0x3746000 Stack Offset = 0x3736000
+TemporaryRamMigration(0x810000, 0x3F4E000, 0x10000)
+Loading PEIM 52C05B14-0B98-496C-BC3B-04B50211D680
+Loading PEIM at 0x00007EE8000 EntryPoint=0x00007EEFD64 PeiCore.efi
+Reinstall PPI: 8C8CE578-8A3D-4F1C-9935-896185C32DD3
+Reinstall PPI: 5473C07A-3DCB-4DCA-BD6F-1E9689E7349A
+Reinstall PPI: B9E0ABFE-5979-4914-977F-6DEE78C278A6
+Install PPI: F894643D-C449-42D1-8EA8-85BDD8C65BDE
+Loading PEIM 86D70125-BAA3-4296-A62F-602BEBBB9081
+Loading PEIM at 0x00007EE3000 EntryPoint=0x00007EE5EF7 DxeIpl.efi
+Install PPI: 1A36E4E7-FAB6-476A-8E75-695A0576FDD7
+Install PPI: 0AE8CE5D-E448-4437-A8D7-EBF5F194F731
+Loading PEIM 89E549B0-7CFE-449D-9BA3-10D8B2312D71
+Loading PEIM at 0x00007EDF000 EntryPoint=0x00007EE12E6 S3Resume2Pei.efi
+Install PPI: 6D582DBC-DB85-4514-8FCC-5ADF6227B147
+Loading PEIM EDADEB9D-DDBA-48BD-9D22-C1C169C8C5C6
+Loading PEIM at 0x00007ED3000 EntryPoint=0x00007EDB200 CpuMpPei.efi
+Register PPI Notify: F894643D-C449-42D1-8EA8-85BDD8C65BDE
+Notify: PPI Guid: F894643D-C449-42D1-8EA8-85BDD8C65BDE, Peim notify entry point: 7ED9889
+AP Loop Mode is 1
+GetMicrocodePatchInfoFromHob: Microcode patch cache HOB is not found.
+CPU[0000]: Microcode revision = 00000000, expected = 00000000
+Register PPI Notify: 8F9D4825-797D-48FC-8471-845025792EF6
+Does not find any stored CPU BIST information from PPI!
+ APICID - 0x00000000, BIST - 0x00000000
+Install PPI: 9E9F374B-8F16-4230-9824-5846EE766A97
+Install PPI: 5CB9CB3D-31A4-480C-9498-29D269BACFBA
+Install PPI: EE16160A-E8BE-47A6-820A-C6900DB0250A
+Notify: PPI Guid: EE16160A-E8BE-47A6-820A-C6900DB0250A, Peim notify entry point: 835FD3
+PlatformPei: ClearCacheOnMpServicesAvailable
+DiscoverPeimsAndOrderWithApriori(): Found 0x0 PEI FFS files in the 1th FV
+DXE IPL Entry
+Loading PEIM D6A2CB7F-6A18-4E2F-B43B-9920A733700A
+Loading PEIM at 0x00007EA4000 EntryPoint=0x00007EAFC72 DxeCore.efi
+Loading DXE CORE at 0x00007EA4000 EntryPoint=0x00007EAFC72
+AddressBits=36 5LevelPaging=0 1GPage=0
+Pml5=1 Pml4=1 Pdp=64 TotalPage=66
+Install PPI: 605EA650-C65C-42E1-BA80-91A52AB618C6
+Notify: PPI Guid: 605EA650-C65C-42E1-BA80-91A52AB618C6, Peim notify entry point: 82D91E
+CoreInitializeMemoryServices:
+ BaseAddress - 0x3F59000 Length - 0x3CA7000 MinimalMemorySizeNeeded - 0x320000
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7EC6EA8
+ProtectUefiImageCommon - 0x7EC6EA8
+ - 0x0000000007EA4000 - 0x0000000000026000
+DxeMain: MemoryBaseAddress=0x3F59000 MemoryLength=0x3CA7000
+HOBLIST address in DXE = 0x78EA018
+Memory Allocation 0x0000000A 0x7F78000 - 0x7FFFFFF
+Memory Allocation 0x0000000A 0x810000 - 0x81FFFF
+Memory Allocation 0x0000000A 0x807000 - 0x807FFF
+Memory Allocation 0x0000000A 0x800000 - 0x805FFF
+Memory Allocation 0x0000000A 0x806000 - 0x806FFF
+Memory Allocation 0x00000006 0x7EF4000 - 0x7F77FFF
+Memory Allocation 0x0000000A 0x820000 - 0x8FFFFF
+Memory Allocation 0x00000004 0x900000 - 0x14FFFFF
+Memory Allocation 0x00000004 0x7E84000 - 0x7EA3FFF
+Memory Allocation 0x00000003 0x7EE8000 - 0x7EF3FFF
+Memory Allocation 0x00000003 0x7EE3000 - 0x7EE7FFF
+Memory Allocation 0x00000003 0x7EDF000 - 0x7EE2FFF
+Memory Allocation 0x00000003 0x7ED3000 - 0x7EDEFFF
+Memory Allocation 0x00000004 0x7ECA000 - 0x7ED2FFF
+Memory Allocation 0x00000003 0x7EA4000 - 0x7EC9FFF
+Memory Allocation 0x00000003 0x7EA4000 - 0x7EC9FFF
+Memory Allocation 0x00000004 0x7E84000 - 0x7EA3FFF
+Memory Allocation 0x00000004 0x7C00000 - 0x7DFFFFF
+Memory Allocation 0x00000007 0x7E00000 - 0x7E83FFF
+Memory Allocation 0x00000004 0x3F36000 - 0x3F55FFF
+FV Hob 0x900000 - 0x14FFFFF
+InstallProtocolInterface: D8117CFE-94A6-11D4-9A3A-0090273FC14D 7EC6070
+InstallProtocolInterface: 8F644FA9-E850-4DB1-9CE2-0B44698E8DA4 78E6CB0
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 78E6D98
+InstallProtocolInterface: 220E73B6-6BDB-4413-8405-B974B108619A 78E6630
+InstallProtocolInterface: EE4E5898-3914-4259-9D6E-DC7BD79403CF 7EC5D30
+Loading driver 9B680FCE-AD6B-4F3A-B60B-F59899003443
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75CE140
+Loading driver at 0x000075A6000 EntryPoint=0x000075ADD77 DevicePathDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75CE718
+ProtectUefiImageCommon - 0x75CE140
+ - 0x00000000075A6000 - 0x000000000000B240
+InstallProtocolInterface: 0379BE4E-D706-437D-B037-EDB82FB772A4 75B0F00
+InstallProtocolInterface: 8B843E20-8132-4852-90CC-551A4E4A7F1C 75B0EE0
+InstallProtocolInterface: 05C99A21-C70F-4AD2-8A5F-35DF3343F51E 75B0EC0
+Loading driver 80CF7257-87AB-47F9-A3FE-D50B76D89541
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75BD1C0
+Loading driver at 0x000075A0000 EntryPoint=0x000075A3833 PcdDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75BDB98
+ProtectUefiImageCommon - 0x75BD1C0
+ - 0x00000000075A0000 - 0x0000000000005A80
+InstallProtocolInterface: 11B34006-D85B-4D0A-A290-D5A571310EF7 75A5700
+InstallProtocolInterface: 13A3F0F6-264A-3EF0-F2E0-DEC512342F34 75A5660
+InstallProtocolInterface: 5BE40F57-FA68-4610-BBBF-E9C5FCDAD365 75A5630
+InstallProtocolInterface: FD0F4478-0EFD-461D-BA2D-E58C45FD5F5E 75A5610
+Loading driver 2EC9DA37-EE35-4DE9-86C5-6D9A81DC38A7
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75BC4C0
+Loading driver at 0x000075B6000 EntryPoint=0x000075B79B7 AmdSevDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75BC718
+ProtectUefiImageCommon - 0x75BC4C0
+ - 0x00000000075B6000 - 0x0000000000002E80
+Error: Image at 000075B6000 start failed: Unsupported
+Loading driver 733CBAC2-B23F-4B92-BC8E-FB01CE5907B7
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75BC4C0
+Loading driver at 0x00007AE7000 EntryPoint=0x00007AE9C52 FvbServicesRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75BC918
+ProtectUefiImageCommon - 0x75BC4C0
+ - 0x0000000007AE7000 - 0x0000000000008000
+QEMU Flash: Attempting flash detection at FFC00010
+QemuFlashDetected => FD behaves as FLASH
+QemuFlashDetected => Yes
+Installing QEMU flash FVB
+InstallProtocolInterface: 8F644FA9-E850-4DB1-9CE2-0B44698E8DA4 79EE8B0
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 75BBC18
+Loading driver D93CE3D8-A7EB-4730-8C8E-CC466A9ECC3C
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75BB9C0
+Loading driver at 0x00007AE1000 EntryPoint=0x00007AE374D ReportStatusCodeRouterRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75BB218
+ProtectUefiImageCommon - 0x75BB9C0
+ - 0x0000000007AE1000 - 0x0000000000006000
+InstallProtocolInterface: 86212936-0E76-41C8-A03A-2AF2FC1C39E2 7AE5060
+InstallProtocolInterface: D2B2B828-0826-48A7-B3DF-983C006024F0 7AE5040
+Loading driver B601F8C4-43B7-4784-95B1-F4226CB40CEE
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 759F040
+Loading driver at 0x00007ADB000 EntryPoint=0x00007ADD4A8 RuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 759FE18
+ProtectUefiImageCommon - 0x759F040
+ - 0x0000000007ADB000 - 0x0000000000006000
+InstallProtocolInterface: B7DFB4E1-052F-449F-87BE-9818FC91B733 7ADF040
+Loading driver F80697E9-7FD6-4665-8646-88E33EF71DFC
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 759F3C0
+Loading driver at 0x000075B3000 EntryPoint=0x000075B4539 SecurityStubDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 759F718
+ProtectUefiImageCommon - 0x759F3C0
+ - 0x00000000075B3000 - 0x0000000000002B80
+InstallProtocolInterface: 94AB2F58-1438-4EF1-9152-18941A3A0E68 75B59E8
+InstallProtocolInterface: A46423E3-4617-49F1-B9FF-D1BFA9115839 75B59E0
+InstallProtocolInterface: 15853D7C-3DDF-43E0-A1CB-EBF85B8F872C 75B59C0
+Loading driver 13AC6DD0-73D0-11D4-B06B-00AA00BD6DE7
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75B8940
+Loading driver at 0x00007593000 EntryPoint=0x00007595F70 EbcDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75B8718
+ProtectUefiImageCommon - 0x75B8940
+ - 0x0000000007593000 - 0x0000000000005E00
+InstallProtocolInterface: 13AC6DD1-73D0-11D4-B06B-00AA00BD6DE7 75B8498
+InstallProtocolInterface: 96F46153-97A7-4793-ACC1-FA19BF78EA97 7598B60
+InstallProtocolInterface: 2755590C-6F3C-42FA-9EA4-A3BA543CDA25 75B7F18
+InstallProtocolInterface: AAEACCFD-F27B-4C17-B610-75CA1F2DFB52 75B7B98
+Loading driver 245CB4DA-8E15-4A1B-87E3-9878FFA07520
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75B70C0
+Loading driver at 0x0000759B000 EntryPoint=0x0000759C2D5 Legacy8259.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75B7A18
+ProtectUefiImageCommon - 0x75B70C0
+ - 0x000000000759B000 - 0x0000000000001D80
+InstallProtocolInterface: 38321DBA-4FE0-4E17-8AEC-413055EAEDC1 759CC00
+Loading driver A19B1FE7-C1BC-49F8-875F-54A5D542443F
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75B7440
+Loading driver at 0x0000759D000 EntryPoint=0x0000759E406 CpuIo2Dxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75B6F18
+ProtectUefiImageCommon - 0x75B7440
+ - 0x000000000759D000 - 0x0000000000002000
+InstallProtocolInterface: AD61F191-AE5F-4C0E-B9FA-E869D288C64F 759EEC0
+Loading driver 1A1E4886-9517-440E-9FDE-3BE44CEE2136
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 75B60C0
+Loading driver at 0x00007171000 EntryPoint=0x00007179EB1 CpuDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 75B6A18
+ProtectUefiImageCommon - 0x75B60C0
+ - 0x0000000007171000 - 0x0000000000010780
+Paging: added 512 pages to page table pool
+CurrentPagingContext:
+ MachineType - 0x8664
+ PageTableBase - 0x7C01000
+ Attributes - 0xC0000002
+InstallProtocolInterface: 26BACCB1-6F42-11D4-BCE7-0080C73C8881 71812A0
+MemoryProtectionCpuArchProtocolNotify:
+ProtectUefiImageCommon - 0x7EC6EA8
+ - 0x0000000007EA4000 - 0x0000000000026000
+ProtectUefiImageCommon - 0x75CE140
+ - 0x00000000075A6000 - 0x000000000000B240
+ProtectUefiImageCommon - 0x75BD1C0
+ - 0x00000000075A0000 - 0x0000000000005A80
+ProtectUefiImageCommon - 0x75BC4C0
+ - 0x0000000007AE7000 - 0x0000000000008000
+SetUefiImageMemoryAttributes - 0x0000000007AE7000 - 0x0000000000001000 (0x0000000000004000)
+SetUefiImageMemoryAttributes - 0x0000000007AE8000 - 0x0000000000005000 (0x0000000000020000)
+SetUefiImageMemoryAttributes - 0x0000000007AED000 - 0x0000000000002000 (0x0000000000004000)
+ProtectUefiImageCommon - 0x75BB9C0
+ - 0x0000000007AE1000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007AE1000 - 0x0000000000001000 (0x0000000000004000)
+SetUefiImageMemoryAttributes - 0x0000000007AE2000 - 0x0000000000003000 (0x0000000000020000)
+SetUefiImageMemoryAttributes - 0x0000000007AE5000 - 0x0000000000002000 (0x0000000000004000)
+ProtectUefiImageCommon - 0x759F040
+ - 0x0000000007ADB000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007ADB000 - 0x0000000000001000 (0x0000000000004000)
+SetUefiImageMemoryAttributes - 0x0000000007ADC000 - 0x0000000000003000 (0x0000000000020000)
+SetUefiImageMemoryAttributes - 0x0000000007ADF000 - 0x0000000000002000 (0x0000000000004000)
+ProtectUefiImageCommon - 0x759F3C0
+ - 0x00000000075B3000 - 0x0000000000002B80
+ProtectUefiImageCommon - 0x75B8940
+ - 0x0000000007593000 - 0x0000000000005E00
+ProtectUefiImageCommon - 0x75B70C0
+ - 0x000000000759B000 - 0x0000000000001D80
+ProtectUefiImageCommon - 0x75B7440
+ - 0x000000000759D000 - 0x0000000000002000
+ProtectUefiImageCommon - 0x75B60C0
+ - 0x0000000007171000 - 0x0000000000010780
+ConvertPages: failed to find range A0000 - FFFFF
+ConvertPages: failed to find range 80000000 - FBFFFFFF
+ConvertPages: failed to find range FEC00000 - FEC00FFF
+Failed to update capability: [8] 00000000FED00000 - 00000000FED003FF (C700000000000001 -> C700000000026001)
+ConvertPages: failed to find range FEE00000 - FEEFFFFF
+ConvertPages: failed to find range FFC00000 - FFFFFFFF
+AP Loop Mode is 1
+GetMicrocodePatchInfoFromHob: MicrocodeBase = 0x0, MicrocodeSize = 0x0
+CPU[0000]: Microcode revision = 00000000, expected = 00000000
+Detect CPU count: 1
+InstallProtocolInterface: 3FDDA605-A76E-4F46-AD29-12F4531B3D08 71814C0
+Loading driver F6697AC4-A776-4EE1-B643-1FEFF2B615BB
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 718B0C0
+Loading driver at 0x00007187000 EntryPoint=0x0000718806E IncompatiblePciDeviceSupportDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 718B418
+ProtectUefiImageCommon - 0x718B0C0
+ - 0x0000000007187000 - 0x0000000000001F40
+InstallProtocolInterface: EB23F55A-7863-4AC2-8D3D-956535DE0375 7188E58
+Loading driver 11A6EDF6-A9BE-426D-A6CC-B22FE51D9224
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 718A1C0
+Loading driver at 0x00007162000 EntryPoint=0x000071652EF PciHotPlugInitDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 718A018
+ProtectUefiImageCommon - 0x718A1C0
+ - 0x0000000007162000 - 0x0000000000004BC0
+InstallProtocolInterface: AA0E8BC1-DABC-46B0-A844-37B8169B2BEA 7166AC0
+Loading driver 4B28E4C7-FF36-4E10-93CF-A82159E777C5
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 718A540
+Loading driver at 0x00007AD5000 EntryPoint=0x00007AD7742 ResetSystemRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7189F98
+ProtectUefiImageCommon - 0x718A540
+ - 0x0000000007AD5000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007AD5000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AD6000 - 0x0000000000003000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AD9000 - 0x0000000000002000 (0x0000000000004008)
+InstallProtocolInterface: 27CFAC88-46CC-11D4-9A38-0090273FC14D 0
+InstallProtocolInterface: 9DA34AE0-EAF9-4BBF-8EC3-FD60226C44BE 7AD9108
+InstallProtocolInterface: 695D7835-8D47-4C11-AB22-FA8ACCE7AE7A 7AD90C8
+InstallProtocolInterface: 2DF6BA0B-7092-440D-BD04-FB091EC3F3C1 7AD9088
+Loading driver C8339973-A563-4561-B858-D8476F9DEFC4
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7189240
+Loading driver at 0x00007183000 EntryPoint=0x00007183FE4 Metronome.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7189C18
+ProtectUefiImageCommon - 0x7189240
+ - 0x0000000007183000 - 0x0000000000001E40
+InstallProtocolInterface: 26BACCB2-6F42-11D4-BCE7-0080C73C8881 7184CD0
+Loading driver 79E4A61C-ED73-4312-94FE-E3E7563362A9
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7186CC0
+Loading driver at 0x0000715C000 EntryPoint=0x0000715D86E PrintDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7186A98
+ProtectUefiImageCommon - 0x7186CC0
+ - 0x000000000715C000 - 0x0000000000002880
+InstallProtocolInterface: F05976EF-83F1-4F3D-8619-F7595D41E538 715E6E0
+InstallProtocolInterface: 0CC252D2-C106-4661-B5BD-3147A4F81F92 715E680
+Loading driver 348C4D62-BFBD-4882-9ECE-C80BB1C4783B
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7186340
+Loading driver at 0x00007122000 EntryPoint=0x00007125826 HiiDatabase.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7185018
+ProtectUefiImageCommon - 0x7186340
+ - 0x0000000007122000 - 0x000000000001CFC0
+InstallProtocolInterface: E9CA4775-8657-47FC-97E7-7ED65A084324 713EBA8
+InstallProtocolInterface: 0FD96974-23AA-4CDC-B9CB-98D17750322A 713EC20
+InstallProtocolInterface: EF9FC172-A1B2-4693-B327-6D32FC416042 713EC48
+InstallProtocolInterface: 587E72D7-CC50-4F79-8209-CA291FC1A10F 713ECA0
+InstallProtocolInterface: 0A8BADD5-03B8-4D19-B128-7B8F0EDAA596 713ECD0
+InstallProtocolInterface: 31A6406A-6BDF-4E46-B2A2-EBAA89C40920 713EBC8
+InstallProtocolInterface: 1A1241E6-8F19-41A9-BC0E-E8EF39E06546 713EBF0
+Loading driver 96B5C032-DF4C-4B6E-8232-438DCF448D0E
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 71851C0
+Loading driver at 0x00007159000 EntryPoint=0x0000715A134 NullMemoryTestDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7185518
+ProtectUefiImageCommon - 0x71851C0
+ - 0x0000000007159000 - 0x00000000000020C0
+InstallProtocolInterface: 309DE7F1-7F5E-4ACE-B49C-531BE5AA95EF 715AF20
+Loading driver 9622E42C-8E38-4A08-9E8F-54F784652F6B
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 71820C0
+Loading driver at 0x0000714B000 EntryPoint=0x0000714EC72 AcpiTableDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7182B18
+ProtectUefiImageCommon - 0x71820C0
+ - 0x000000000714B000 - 0x0000000000006CC0
+InstallProtocolInterface: FFE06BDD-6107-46A6-7BB2-5A9C7EC5275C 7182420
+InstallProtocolInterface: EB97088E-CFDF-49C6-BE4B-D906A5B20E86 7182430
+Loading driver A210F973-229D-4F4D-AA37-9895E6C9EABA
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7158040
+Loading driver at 0x00007156000 EntryPoint=0x00007157214 DpcDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7158D18
+ProtectUefiImageCommon - 0x7158040
+ - 0x0000000007156000 - 0x0000000000002000
+InstallProtocolInterface: 480F8AE9-0C46-4AA9-BC89-DB9FBA619806 7157CD0
+Loading driver 8657015B-EA43-440D-949A-AF3BE365C0FC
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7158440
+Loading driver at 0x00007147000 EntryPoint=0x000071494CB IoMmuDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7158C18
+ProtectUefiImageCommon - 0x7158440
+ - 0x0000000007147000 - 0x0000000000003B00
+InstallProtocolInterface: F8775D50-8ABD-4ADF-92AC-853E51F6C8DC 0
+Loading driver 22DC2B60-FE40-42AC-B01F-3AB1FAD9AAD8
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7161B40
+Loading driver at 0x00007ACF000 EntryPoint=0x00007AD13C2 EmuVariableFvbRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7158818
+ProtectUefiImageCommon - 0x7161B40
+ - 0x0000000007ACF000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007ACF000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AD0000 - 0x0000000000003000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AD3000 - 0x0000000000002000 (0x0000000000004008)
+EMU Variable FVB Started
+Disabling EMU Variable FVB since flash variables appear to be supported.
+Error: Image at 00007ACF000 start failed: Aborted
+SetUefiImageMemoryAttributes - 0x0000000007ACF000 - 0x0000000000006000 (0x0000000000000008)
+Loading driver CBD2E4D5-7068-4FF5-B462-9822B4AD8D60
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7161B40
+Loading driver at 0x00007AC6000 EntryPoint=0x00007ACF08E VariableRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7161098
+ProtectUefiImageCommon - 0x7161B40
+ - 0x0000000007AC6000 - 0x000000000000F000
+SetUefiImageMemoryAttributes - 0x0000000007AC6000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AC7000 - 0x000000000000C000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AD3000 - 0x0000000000002000 (0x0000000000004008)
+VarCheckLibRegisterSetVariableCheckHandler - 0x7ACA263 Success
+Variable driver common space: 0x3FF9C 0x3FF9C 0x3FF9C
+Variable driver will work with auth variable format!
+InstallProtocolInterface: CD3D0A05-9E24-437C-A891-1EE053DB7638 7AD3470
+InstallProtocolInterface: AF23B340-97B4-4685-8D4F-A3F28169B21D 7AD3440
+InstallProtocolInterface: 1E5668E2-8481-11D4-BCF1-0080C73C8881 0
+VarCheckLibRegisterSetVariableCheckHandler - 0x7AC8DAD Success
+InstallProtocolInterface: 81D1675C-86F6-48DF-BD95-9A6E4F0925C3 7AD33C0
+Loading driver 6C2004EF-4E0E-4BE4-B14C-340EB4AA5891
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7160C40
+Loading driver at 0x00007AC1000 EntryPoint=0x00007AC2F48 StatusCodeHandlerRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7160B18
+ProtectUefiImageCommon - 0x7160C40
+ - 0x0000000007AC1000 - 0x0000000000005000
+SetUefiImageMemoryAttributes - 0x0000000007AC1000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AC2000 - 0x0000000000003000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AC5000 - 0x0000000000001000 (0x0000000000004008)
+Loading driver C190FE35-44AA-41A1-8AEA-4947BC60E09D
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7160440
+Loading driver at 0x00007152000 EntryPoint=0x00007153058 Timer.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 715F018
+ProtectUefiImageCommon - 0x7160440
+ - 0x0000000007152000 - 0x0000000000001D80
+InstallProtocolInterface: 26BACCB3-6F42-11D4-BCE7-0080C73C8881 7153C00
+Loading driver 128FB770-5E79-4176-9E51-9BB268A17DD1
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 715F0C0
+Loading driver at 0x00007110000 EntryPoint=0x00007114D61 PciHostBridgeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 715FB98
+ProtectUefiImageCommon - 0x715F0C0
+ - 0x0000000007110000 - 0x0000000000008F80
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+PciHostBridgeUtilityInitRootBridge: populated root bus 0, with room for 255 subordinate bus(es)
+RootBridge: PciRoot(0x0)
+ Support/Attr: 70069 / 70069
+ DmaAbove4G: No
+NoExtConfSpace: Yes
+ AllocAttr: 3 (CombineMemPMem Mem64Decode)
+ Bus: 0 - FF Translation=0
+ Io: C000 - FFFF Translation=0
+ Mem: 80000000 - FBFFFFFF Translation=0
+ MemAbove4G: 800000000 - FFFFFFFFF Translation=0
+ PMem: FFFFFFFFFFFFFFFF - 0 Translation=0
+ PMemAbove4G: FFFFFFFFFFFFFFFF - 0 Translation=0
+InstallProtocolInterface: CF8034BE-6768-4D8B-B739-7CCE683A9FBE 715F4C0
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 715F918
+InstallProtocolInterface: 2F707EBB-4A1A-11D4-9A38-0090273FC14D 71551F0
+Loading driver EBF342FE-B1D3-4EF8-957C-8048606FF671
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7155440
+Loading driver at 0x000070DE000 EntryPoint=0x000070E076B SetupBrowser.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7155718
+ProtectUefiImageCommon - 0x7155440
+ - 0x00000000070DE000 - 0x0000000000018840
+InstallProtocolInterface: B9D4C360-BCFB-4F9B-9298-53C136982258 70F6370
+InstallProtocolInterface: A770C357-B693-4E6D-A6CF-D21C728E550B 70F63A0
+InstallProtocolInterface: 1F73B18D-4630-43C1-A1DE-6F80855D7DA4 70F6380
+Loading driver F9D88642-0737-49BC-81B5-6889CD57D9EA
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 71542C0
+Loading driver at 0x0000711C000 EntryPoint=0x0000711F04C SmbiosDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7154B18
+ProtectUefiImageCommon - 0x71542C0
+ - 0x000000000711C000 - 0x0000000000005280
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x19
+Select Item: 0x26
+DetectSmbiosVersion: SMBIOS version from QEMU: 0x0208
+InstallProtocolInterface: 03583FF6-CB36-4940-947E-B9B39F4AFAF7 7121170
+Loading driver 17985E6F-E778-4D94-AEFA-C5DD2B77E186
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7146B40
+Loading driver at 0x00007109000 EntryPoint=0x0000710CFFD QemuFwCfgAcpiPlatform.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7154598
+ProtectUefiImageCommon - 0x7146B40
+ - 0x0000000007109000 - 0x00000000000062C0
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+AcpiPlatformEntryPoint: waiting for root bridges to be connected, registered callback
+Loading driver BDCE85BB-FBAA-4F4E-9264-501A2C249581
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7146140
+Loading driver at 0x00007102000 EntryPoint=0x00007106171 S3SaveStateDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7146398
+ProtectUefiImageCommon - 0x7146140
+ - 0x0000000007102000 - 0x0000000000006740
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x28
+InstallProtocolInterface: BD445D79-B7AD-4F04-9AD8-29BD2040EB3C 0
+InstallProtocolInterface: E857CAF6-C046-45DC-BE3F-EE0765FBA887 71084A0
+Loading driver A487A478-51EF-48AA-8794-7BEE2A0562F1
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 71450C0
+Loading driver at 0x000070D3000 EntryPoint=0x000070D95F0 tftpDynamicCommand.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7146498
+InstallProtocolInterface: 6A1EE763-D47A-43B4-AABE-EF1DE2AB56FC 70DB9B0
+ProtectUefiImageCommon - 0x71450C0
+ - 0x00000000070D3000 - 0x000000000000A500
+InstallProtocolInterface: 3C7200E9-005F-4EA4-87DE-A3DFAC8A27C3 70DB5C0
+Loading driver 19618BCE-55AE-09C6-37E9-4CE04084C7A1
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7142B40
+Loading driver at 0x000070B9000 EntryPoint=0x000070C0D6B httpDynamicCommand.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7142E18
+InstallProtocolInterface: 6A1EE763-D47A-43B4-AABE-EF1DE2AB56FC 70C3770
+ProtectUefiImageCommon - 0x7142B40
+ - 0x00000000070B9000 - 0x000000000000CA00
+InstallProtocolInterface: 3C7200E9-005F-4EA4-87DE-A3DFAC8A27C3 70C32C0
+Loading driver 2F30DA26-F51B-4B6F-85C4-31873C281BCA
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 71422C0
+Loading driver at 0x000070CB000 EntryPoint=0x000070CFF59 LinuxInitrdDynamicShellCommand.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 711B018
+InstallProtocolInterface: 6A1EE763-D47A-43B4-AABE-EF1DE2AB56FC 70D1F70
+ProtectUefiImageCommon - 0x71422C0
+ - 0x00000000070CB000 - 0x0000000000007A80
+InstallProtocolInterface: 3C7200E9-005F-4EA4-87DE-A3DFAC8A27C3 70D1C50
+Loading driver F74D20EE-37E7-48FC-97F7-9B1047749C69
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 711AAC0
+Loading driver at 0x000070F8000 EntryPoint=0x000070F8EEF LogoDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 711AE18
+InstallProtocolInterface: 6A1EE763-D47A-43B4-AABE-EF1DE2AB56FC 70F9AF0
+ProtectUefiImageCommon - 0x711AAC0
+ - 0x00000000070F8000 - 0x0000000000004A40
+InstallProtocolInterface: 53CD299F-2BC1-40C0-8C07-23F64FDB30E0 70F9940
+Loading driver DCE1B094-7DC6-45D0-9FDD-D7FC3CC3E4EF
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 711B3C0
+Loading driver at 0x000070B4000 EntryPoint=0x000070B6671 QemuRamfbDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7119D98
+ProtectUefiImageCommon - 0x711B3C0
+ - 0x00000000070B4000 - 0x0000000000004580
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Error: Image at 000070B4000 start failed: Not Found
+Loading driver FE5CEA76-4F72-49E8-986F-2CD899DFFE5D
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 711B3C0
+Loading driver at 0x000070AD000 EntryPoint=0x000070B0B2F FaultTolerantWriteDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7119E18
+ProtectUefiImageCommon - 0x711B3C0
+ - 0x00000000070AD000 - 0x0000000000005500
+Ftw: FtwWorkSpaceLba - 0x41, WorkBlockSize - 0x1000, FtwWorkSpaceBase - 0x0
+Ftw: FtwSpareLba - 0x42, SpareBlockSize - 0x1000
+Ftw: NumberOfWorkBlock - 0x1, FtwWorkBlockLba - 0x41
+Ftw: WorkSpaceLbaInSpare - 0x0, WorkSpaceBaseInSpare - 0x0
+Ftw: Remaining work space size - FE0
+InstallProtocolInterface: 3EBD9E82-2C78-4DE6-9786-8D4BFCB7C881 70C9028
+NOTICE - AuthVariableLibInitialize() returns Unsupported!
+Variable driver will continue to work without auth variable support!
+RecordSecureBootPolicyVarData GetVariable SecureBoot Status E
+InstallProtocolInterface: 6441F818-6362-4E44-B570-7DBA31DD2453 0
+Loading driver 378D7B65-8DA9-4773-B6E4-A47826A833E1
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 71197C0
+Loading driver at 0x00007ABB000 EntryPoint=0x00007ABE044 PcRtc.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7119518
+ProtectUefiImageCommon - 0x71197C0
+ - 0x0000000007ABB000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007ABB000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007ABC000 - 0x0000000000004000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AC0000 - 0x0000000000001000 (0x0000000000004008)
+InstallProtocolInterface: 27CFAC87-46CC-11D4-9A38-0090273FC14D 0
+Loading driver F099D67F-71AE-4C36-B2A3-DCEB0EB2B7D8
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70FD1C0
+Loading driver at 0x000070B7000 EntryPoint=0x000070B7FBE WatchdogTimer.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70FDA18
+ProtectUefiImageCommon - 0x70FD1C0
+ - 0x00000000070B7000 - 0x0000000000001E00
+InstallProtocolInterface: 665E3FF5-46CC-11D4-9A38-0090273FC14D 70B8C70
+Loading driver AD608272-D07F-4964-801E-7BD3B7888652
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70F7B40
+Loading driver at 0x00007AB7000 EntryPoint=0x00007AB8D8F MonotonicCounterRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70F7098
+ProtectUefiImageCommon - 0x70F7B40
+ - 0x0000000007AB7000 - 0x0000000000004000
+SetUefiImageMemoryAttributes - 0x0000000007AB7000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AB8000 - 0x0000000000002000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007ABA000 - 0x0000000000001000 (0x0000000000004008)
+InstallProtocolInterface: 1DA97072-BDDC-4B30-99F1-72A0B56FFF2A 0
+Loading driver 42857F0A-13F2-4B21-8A23-53D3F714B840
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70F72C0
+Loading driver at 0x00007AB3000 EntryPoint=0x00007AB4FE8 CapsuleRuntimeDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70C8F98
+ProtectUefiImageCommon - 0x70F72C0
+ - 0x0000000007AB3000 - 0x0000000000004000
+SetUefiImageMemoryAttributes - 0x0000000007AB3000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AB4000 - 0x0000000000002000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AB6000 - 0x0000000000001000 (0x0000000000004008)
+InstallProtocolInterface: 5053697E-2CBC-4819-90D9-0580DEEE5754 0
+Loading driver EBF8ED7C-0DD1-4787-84F1-F48D537DCACF
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70C8840
+Loading driver at 0x000070A1000 EntryPoint=0x000070A4AC2 DriverHealthManagerDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70C8698
+ProtectUefiImageCommon - 0x70C8840
+ - 0x00000000070A1000 - 0x0000000000005D40
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 70A6AE0
+InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 70A6AB0
+Loading driver 6D33944A-EC75-4855-A54D-809C75241F6C
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70C60C0
+Loading driver at 0x0000706B000 EntryPoint=0x0000707291F BdsDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70C6A98
+ProtectUefiImageCommon - 0x70C60C0
+ - 0x000000000706B000 - 0x000000000001A740
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+InstallProtocolInterface: 665E3FF6-46CC-11D4-9A38-0090273FC14D 7084ED0
+Loading driver 28A03FF4-12B3-4305-A417-BB1A4F94081E
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70C7340
+Loading driver at 0x0000708B000 EntryPoint=0x00007091A22 RamDiskDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70C6798
+ProtectUefiImageCommon - 0x70C7340
+ - 0x000000000708B000 - 0x000000000000A780
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 70C6598
+InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 70954F8
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 70953E0
+InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 70B5430
+InstallProtocolInterface: AB38A0DF-6873-44A9-87E6-D4EB56148449 7095430
+InstallProtocolInterface: 28A03FF4-12B3-4305-A417-BB1A4F94081E 70B5418
+Loading driver E660EA85-058E-4B55-A54B-F02F83A24707
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70B4740
+Loading driver at 0x00007043000 EntryPoint=0x00007049339 DisplayEngine.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70B4A98
+ProtectUefiImageCommon - 0x70B4740
+ - 0x0000000007043000 - 0x0000000000013440
+InstallProtocolInterface: 9BBE29E9-FDA1-41EC-AD52-452213742D2E 70548D0
+InstallProtocolInterface: 4311EDC0-6054-46D4-9E40-893EA952FCCC 70548E8
+Loading driver 4110465D-5FF3-4F4B-B580-24ED0D06747A
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70AA140
+Loading driver at 0x0000709B000 EntryPoint=0x0000709C5CB SmbiosPlatformDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70AA398
+ProtectUefiImageCommon - 0x70AA140
+ - 0x000000000709B000 - 0x0000000000002A80
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x27
+SmbiosAdd: Smbios type 1 with size 0x53 is added to 32-bit table
+SmbiosCreateTable: Initialize 32-bit entry point structure
+SmbiosCreateTable() re-allocate SMBIOS 32-bit table
+SmbiosAdd: Smbios type 3 with size 0x2C is added to 32-bit table
+SmbiosAdd: Smbios type 4 with size 0x46 is added to 32-bit table
+SmbiosAdd: Smbios type 16 with size 0x19 is added to 32-bit table
+SmbiosAdd: Smbios type 17 with size 0x35 is added to 32-bit table
+SmbiosAdd: Smbios type 19 with size 0x21 is added to 32-bit table
+SmbiosAdd: Smbios type 32 with size 0xD is added to 32-bit table
+SmbiosAdd: Smbios type 0 with size 0x4A is added to 32-bit table
+Loading driver FA20568B-548B-4B2B-81EF-1BA08D4A3CEC
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70A7440
+Loading driver at 0x00007033000 EntryPoint=0x0000703C56E BootScriptExecutorDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70A7098
+ProtectUefiImageCommon - 0x70A7440
+ - 0x0000000007033000 - 0x000000000000F380
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x28
+Loading driver D9DCC5DF-4007-435E-9098-8970935504B2
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70A00C0
+Loading driver at 0x00007086000 EntryPoint=0x000070886D7 PlatformDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70A0D98
+ProtectUefiImageCommon - 0x70A00C0
+ - 0x0000000007086000 - 0x0000000000004600
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 708A440
+InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 708A510
+Loading driver 93B80004-9FB3-11D4-9A3A-0090273FC14D
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 709F040
+Loading driver at 0x00007024000 EntryPoint=0x00007026A70 PciBusDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 70A0518
+ProtectUefiImageCommon - 0x709F040
+ - 0x0000000007024000 - 0x000000000000EE80
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 7032B60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7032B30
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 7032B10
+InstallProtocolInterface: 19CB87AB-2CB9-4665-8360-DDCF6054F79D 7032AF0
+Loading driver 83DD3B39-7CAF-4FAC-A542-E050B767E3A7
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 709E0C0
+Loading driver at 0x00007068000 EntryPoint=0x00007069C65 VirtioPciDeviceDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 709EA18
+ProtectUefiImageCommon - 0x709E0C0
+ - 0x0000000007068000 - 0x0000000000002F80
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 706AE20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 706AE00
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 706ADE0
+Loading driver 0170F60C-1D40-4651-956D-F0BD9879D527
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 709E4C0
+Loading driver at 0x00007063000 EntryPoint=0x00007066346 Virtio10.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 709E798
+ProtectUefiImageCommon - 0x709E4C0
+ - 0x0000000007063000 - 0x0000000000004B00
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 70679A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7067980
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 7067960
+Loading driver 11D92DFB-3CA9-4F93-BA2E-4780ED3E03B5
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70620C0
+Loading driver at 0x0000705E000 EntryPoint=0x00007060230 VirtioBlkDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7062A98
+ProtectUefiImageCommon - 0x70620C0
+ - 0x000000000705E000 - 0x0000000000003500
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 70613C0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 70613A0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 7061380
+Loading driver FAB5D4F4-83C0-4AAF-8480-442D11DF6CEA
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7062540
+Loading driver at 0x0000705A000 EntryPoint=0x0000705C752 VirtioScsiDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7096018
+ProtectUefiImageCommon - 0x7062540
+ - 0x000000000705A000 - 0x00000000000039C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 705D880
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 705D860
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 705D840
+Loading driver 58E26F0D-CBAC-4BBA-B70F-18221415665A
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70960C0
+Loading driver at 0x00007057000 EntryPoint=0x00007058D06 VirtioRngDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7096A18
+ProtectUefiImageCommon - 0x70960C0
+ - 0x0000000007057000 - 0x0000000000002F00
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 7059DA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7059D80
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 7059D60
+Loading driver 30346B14-1580-4781-879D-BA0C55AE9BB2
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7096440
+Loading driver at 0x00007020000 EntryPoint=0x000070221D3 PvScsiDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 701FF98
+ProtectUefiImageCommon - 0x7096440
+ - 0x0000000007020000 - 0x0000000000003440
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 7023300
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 70232E0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 70232C0
+Loading driver 2B3DB5DD-B315-4961-8454-0AFF3C811B19
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 701F7C0
+Loading driver at 0x0000701B000 EntryPoint=0x0000701D0CC MptScsiDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 701F118
+ProtectUefiImageCommon - 0x701F7C0
+ - 0x000000000701B000 - 0x0000000000003380
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 701E240
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 701E220
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 701E200
+Loading driver 51CCF399-4FDF-4E55-A45B-E123F84D456A
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 701A040
+Loading driver at 0x00007016000 EntryPoint=0x000070186A8 ConPlatformDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 701F418
+ProtectUefiImageCommon - 0x701A040
+ - 0x0000000007016000 - 0x0000000000003E80
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 7019C60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7019CD0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 7019CB0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 7019C20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7019CD0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 7019CB0
+Loading driver 408EDCEC-CF6D-477C-A5A8-B4844E3DE281
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 701A3C0
+Loading driver at 0x00007006000 EntryPoint=0x0000700AF51 ConSplitterDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 701A698
+ProtectUefiImageCommon - 0x701A3C0
+ - 0x0000000007006000 - 0x0000000000007240
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 700CF20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CEF0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 700CED0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 700CEA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CE70
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 700CE50
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 700CE20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CDF0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 700CDD0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 700CDA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CD70
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 700CD50
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 700CD20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CCF0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 700CCD0
+InstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B 700CB50
+InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA 700CB80
+InstallProtocolInterface: 31878C87-0B75-11D5-9A4F-0090273FC14D 700CBF0
+InstallProtocolInterface: 8D59D32B-C655-4AE9-9B15-F25904992A43 700CC48
+InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B 700CF90
+InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B 700C9F0
+Loading driver CCCB0C28-4B24-11D5-9A5A-0090273FC14D
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70970C0
+Loading driver at 0x00007000000 EntryPoint=0x00007002FB7 GraphicsConsoleDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7097C98
+ProtectUefiImageCommon - 0x70970C0
+ - 0x0000000007000000 - 0x0000000000005D80
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 7005B80
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7005B60
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 7005B40
+Loading driver 9E863906-A40F-4875-977F-5B93FF237FC6
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7015040
+Loading driver at 0x00006DF0000 EntryPoint=0x00006DF5900 TerminalDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7015D18
+ProtectUefiImageCommon - 0x7015040
+ - 0x0000000006DF0000 - 0x0000000000007B40
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DF7960
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DF7930
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DF7910
+Loading driver 806040CA-DAD9-4978-A3B4-2D2AB0C8A48F
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7015440
+Loading driver at 0x00006DF8000 EntryPoint=0x00006DFA086 QemuKernelLoaderFsDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7015698
+ProtectUefiImageCommon - 0x7015440
+ - 0x0000000006DF8000 - 0x0000000000003D80
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x17
+Select Item: 0x8
+Select Item: 0xB
+Error: Image at 00006DF8000 start failed: Not Found
+Loading driver 6B38F7B4-AD98-40E9-9093-ACA2B5A253C4
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7015440
+Loading driver at 0x00006DEB000 EntryPoint=0x00006DEDF2B DiskIoDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7015898
+ProtectUefiImageCommon - 0x7015440
+ - 0x0000000006DEB000 - 0x0000000000004800
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DEF680
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DEF650
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DEF630
+Loading driver 1FA1F39E-FEFF-4AAE-BD7B-38A070A3B609
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7014040
+Loading driver at 0x00006DE4000 EntryPoint=0x00006DE8ABD PartitionDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7014E98
+ProtectUefiImageCommon - 0x7014040
+ - 0x0000000006DE4000 - 0x0000000000006540
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DEA3E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DEA3C0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DEA3A0
+Loading driver CD3BAFB6-50FB-4FE8-8E4E-AB74D2C1A600
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70143C0
+Loading driver at 0x00006DFA000 EntryPoint=0x00006DFB19E EnglishDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7014698
+ProtectUefiImageCommon - 0x70143C0
+ - 0x0000000006DFA000 - 0x00000000000020C0
+InstallProtocolInterface: 1D85CD7F-F43D-11D2-9A0C-0090273FC14D 6DFBC20
+InstallProtocolInterface: A4C751FC-23AE-4C3E-92E9-4964CF63F349 6DFBBC0
+Loading driver 0167CCC4-D0F7-4F21-A3EF-9E64B7CDCE8B
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70131C0
+Loading driver at 0x00006DDC000 EntryPoint=0x00006DDEA9E ScsiBus.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7013E98
+ProtectUefiImageCommon - 0x70131C0
+ - 0x0000000006DDC000 - 0x0000000000003F00
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DDFD60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DDFD40
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DDFD20
+Loading driver 0A66E322-3740-4CCE-AD62-BD172CECCA35
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 70135C0
+Loading driver at 0x00006DC8000 EntryPoint=0x00006DCFF9B ScsiDisk.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7013518
+ProtectUefiImageCommon - 0x70135C0
+ - 0x0000000006DC8000 - 0x0000000000009A00
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DD18A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DD1870
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DD1850
+Loading driver 021722D8-522B-4079-852A-FE44C2C13F49
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7012140
+Loading driver at 0x00006DD8000 EntryPoint=0x00006DD9DF0 SataController.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 7012B18
+ProtectUefiImageCommon - 0x7012140
+ - 0x0000000006DD8000 - 0x00000000000031C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DDB060
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DDB040
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DDB020
+Loading driver 5E523CB4-D397-4986-87BD-A6DD8B22F455
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 7012540
+Loading driver at 0x00006DB2000 EntryPoint=0x00006DBA6D8 AtaAtapiPassThruDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 700F018
+ProtectUefiImageCommon - 0x7012540
+ - 0x0000000006DB2000 - 0x000000000000AFC0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DBCDC0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DBCD90
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DBCD70
+Loading driver 19DF145A-B1D4-453F-8507-38816676D7F6
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 700F140
+Loading driver at 0x00006DAB000 EntryPoint=0x00006DAF3DD AtaBusDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 700FB18
+ProtectUefiImageCommon - 0x700F140
+ - 0x0000000006DAB000 - 0x0000000000006380
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DB1180
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DB1150
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DB1130
+Loading driver 5BE3BDF4-53CF-46A3-A6A9-73C34A6E5EE3
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 700F540
+Loading driver at 0x00006DA1000 EntryPoint=0x00006DA8362 NvmExpressDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 700EF98
+ProtectUefiImageCommon - 0x700F540
+ - 0x0000000006DA1000 - 0x0000000000009A80
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DAA8E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DAA8C0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DAA8A0
+InstallProtocolInterface: 5C198761-16A8-4E69-972C-89D67954F81D 6DAA890
+Loading driver 864E1CA8-85EB-4D63-9DCC-6E0FC90FFD55
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 700E840
+Loading driver at 0x00006DD4000 EntryPoint=0x00006DD5DC4 SioBusDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 700E698
+ProtectUefiImageCommon - 0x700E840
+ - 0x0000000006DD4000 - 0x0000000000003180
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DD6FE0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DD6FC0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DD6FA0
+Loading driver E2775B47-D453-4EE3-ADA7-391A1B05AC17
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DFF040
+Loading driver at 0x00006D9B000 EntryPoint=0x00006D9F59B PciSioSerialDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DFFD18
+ProtectUefiImageCommon - 0x6DFF040
+ - 0x0000000006D9B000 - 0x0000000000006000
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6DA0E40
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DA0E20
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6DA0E00
+Loading driver C4D1F932-821F-4744-BF06-6D30F7730F8D
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DFF440
+Loading driver at 0x00006D95000 EntryPoint=0x00006D98B06 Ps2KeyboardDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DFFC18
+ProtectUefiImageCommon - 0x6DFF440
+ - 0x0000000006D95000 - 0x0000000000005740
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D9A5A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D9A570
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D9A550
+Loading driver B8E62775-BB0A-43F0-A843-5BE8B14F8CCD
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DFE040
+Loading driver at 0x00006DC5000 EntryPoint=0x00006DC65A1 BootGraphicsResourceTableDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DFEF18
+ProtectUefiImageCommon - 0x6DFE040
+ - 0x0000000006DC5000 - 0x0000000000002880
+InstallProtocolInterface: CDEA2BD3-FC25-4C1C-B97C-B31186064990 6DC7650
+InstallProtocolInterface: 4B5DC1DF-1EAA-48B2-A7E9-EAC489A00B5C 6DC7630
+Loading driver 961578FE-B6B7-44C3-AF35-6BC705CD2B1F
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DFE6C0
+Loading driver at 0x00006D81000 EntryPoint=0x00006D88AD2 Fat.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DFE598
+ProtectUefiImageCommon - 0x6DFE6C0
+ - 0x0000000006D81000 - 0x0000000000009BC0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D8AA40
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D8AA10
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D8A9F0
+Loading driver 905F13B0-8F91-4B0A-BD76-E1E78F9422E4
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DFDCC0
+Loading driver at 0x00006D8E000 EntryPoint=0x00006D928B1 UdfDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DFDB98
+ProtectUefiImageCommon - 0x6DFDCC0
+ - 0x0000000006D8E000 - 0x00000000000060C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D93F80
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D93F50
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D93F30
+Loading driver 7BD9DDF7-8B83-488E-AEC9-24C78610289C
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DFD3C0
+Loading driver at 0x00006D6D000 EntryPoint=0x00006D73EA2 VirtioFsDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DFD198
+ProtectUefiImageCommon - 0x6DFD3C0
+ - 0x0000000006D6D000 - 0x0000000000009180
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D76080
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D76050
+Loading driver A2F436EA-A127-4EF8-957C-8048606FF670
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DF9CC0
+Loading driver at 0x00006D79000 EntryPoint=0x00006D7E0AD SnpDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DF9718
+ProtectUefiImageCommon - 0x6DF9CC0
+ - 0x0000000006D79000 - 0x00000000000071C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D80040
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D80010
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D7FFF0
+Loading driver E4F61863-FE2C-4B56-A8F4-08519BC439DF
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DF92C0
+Loading driver at 0x00006D66000 EntryPoint=0x00006D6A3EA VlanConfigDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DF8F18
+ProtectUefiImageCommon - 0x6DF92C0
+ - 0x0000000006D66000 - 0x00000000000069C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D6C7E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D6C7B0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D6C790
+Loading driver 025BBFC7-E6A9-4B8B-82AD-6815A1AEAF4A
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DF81C0
+Loading driver at 0x00006D50000 EntryPoint=0x00006D574FD MnpDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DF8A18
+ProtectUefiImageCommon - 0x6DF81C0
+ - 0x0000000006D50000 - 0x000000000000A240
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D5A060
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D5A040
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D5A020
+Loading driver 529D3F93-E8E9-4E73-B1E1-BDF6A9D50113
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DF8640
+Loading driver at 0x00006D60000 EntryPoint=0x00006D640BA ArpDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DE3018
+ProtectUefiImageCommon - 0x6DF8640
+ - 0x0000000006D60000 - 0x0000000000005D00
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D65BA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D65B70
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D65B50
+Loading driver 94734718-0BBC-47FB-96A5-EE7A5AE6A2AD
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DE30C0
+Loading driver at 0x00006D3A000 EntryPoint=0x00006D416C4 Dhcp4Dxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DE3918
+ProtectUefiImageCommon - 0x6DE30C0
+ - 0x0000000006D3A000 - 0x000000000000A4C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D442A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D44270
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D44250
+Loading driver 9FB1A1F3-3B71-4324-B39A-745CBB015FFF
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DE3540
+Loading driver at 0x00006D12000 EntryPoint=0x00006D14662 Ip4Dxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DE2E98
+ProtectUefiImageCommon - 0x6DE3540
+ - 0x0000000006D12000 - 0x00000000000131C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D24E60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D24E40
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D24E20
+Loading driver 6D6963AB-906D-4A65-A7CA-BD40E5D6AF2B
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DE2140
+Loading driver at 0x00006D31000 EntryPoint=0x00006D37560 Udp4Dxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DE2718
+ProtectUefiImageCommon - 0x6DE2140
+ - 0x0000000006D31000 - 0x0000000000008840
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D396A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D39680
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D39660
+Loading driver DC3641B8-2FA8-4ED3-BC1F-F9962A03454B
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DE1B40
+Loading driver at 0x00006D28000 EntryPoint=0x00006D2EE5A Mtftp4Dxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DE1098
+ProtectUefiImageCommon - 0x6DE1B40
+ - 0x0000000006D28000 - 0x0000000000009000
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D30E60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D30E40
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D30E20
+Loading driver 1A7E4468-2F55-4A56-903C-01265EB7622B
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DE1240
+Loading driver at 0x00006CEE000 EntryPoint=0x00006CF0E3A TcpDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DE1818
+ProtectUefiImageCommon - 0x6DE1240
+ - 0x0000000006CEE000 - 0x0000000000011E40
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CFF9A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CFFA50
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CFFA30
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CFF960
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CFFA50
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CFFA30
+Loading driver B95E9FDA-26DE-48D2-8807-1F9107AC5E3A
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DE07C0
+Loading driver at 0x00006CDC000 EntryPoint=0x00006CE2735 UefiPxeBcDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DE0698
+ProtectUefiImageCommon - 0x6DE07C0
+ - 0x0000000006CDC000 - 0x0000000000011340
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x19
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CECE60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CECF00
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CECEE0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CECE20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CECF00
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CECEE0
+Loading driver 86CDDF93-4872-4597-8AF9-A35AE4D3725F
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DD3CC0
+Loading driver at 0x00006CA0000 EntryPoint=0x00006CA7191 IScsiDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DD3098
+ProtectUefiImageCommon - 0x6DD3CC0
+ - 0x0000000006CA0000 - 0x000000000001D580
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CBD060
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CBD0C0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CBD0A0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CBD020
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CBD0C0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CBD0A0
+InstallProtocolInterface: 59324945-EC44-4C0D-B1CD-9DB139DF070C 6CBD010
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6CBD120
+InstallProtocolInterface: 330D4706-F2A0-4E4F-A369-B66FA8D54385 6DD3828
+InstallProtocolInterface: 7671D9D0-53DB-4173-AA69-2327F21F0BC7 6CBCFF0
+Loading driver A92CDB4B-82F1-4E0B-A516-8A655D371524
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DD2240
+Loading driver at 0x00006D0C000 EntryPoint=0x00006D0FB7C VirtioNetDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DD2498
+ProtectUefiImageCommon - 0x6DD2240
+ - 0x0000000006D0C000 - 0x0000000000005440
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D11300
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D112D0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D112B0
+Loading driver 2FB92EFA-2EE0-4BAE-9EB6-7464125E1EF7
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DC4CC0
+Loading driver at 0x00006D05000 EntryPoint=0x00006D0A1EE UhciDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DC4B18
+ProtectUefiImageCommon - 0x6DC4CC0
+ - 0x0000000006D05000 - 0x0000000000006E00
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6D0BC60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D0BC40
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6D0BC20
+Loading driver BDFE430E-8F2A-4DB0-9991-6F856594777E
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DC46C0
+Loading driver at 0x00006CD3000 EntryPoint=0x00006CD933A EhciDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DC4A18
+ProtectUefiImageCommon - 0x6DC46C0
+ - 0x0000000006CD3000 - 0x00000000000087C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CDB620
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CDB600
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CDB5E0
+Loading driver B7F50E91-A759-412C-ADE4-DCD03E7F7C28
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DC12C0
+Loading driver at 0x00006C93000 EntryPoint=0x00006C9C906 XhciDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DC1A98
+ProtectUefiImageCommon - 0x6DC12C0
+ - 0x0000000006C93000 - 0x000000000000CB80
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6C9F9E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6C9F9C0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6C9F9A0
+Loading driver 240612B7-A063-11D4-9A3A-0090273FC14D
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DC1540
+Loading driver at 0x00006CC9000 EntryPoint=0x00006CCF6D6 UsbBusDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DC1898
+ProtectUefiImageCommon - 0x6DC1540
+ - 0x0000000006CC9000 - 0x00000000000092C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CD2100
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CD20D0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CD20B0
+Loading driver 2D2E62CF-9ECF-43B7-8219-94E7FC713DFE
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DC02C0
+Loading driver at 0x00006CC2000 EntryPoint=0x00006CC6112 UsbKbDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DC0A18
+ProtectUefiImageCommon - 0x6DC02C0
+ - 0x0000000006CC2000 - 0x0000000000006340
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6CC8160
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CC8130
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6CC8110
+Loading driver 9FB4B4A7-42C0-4BCD-8540-9BCC6711F83E
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DC0540
+Loading driver at 0x00006C8D000 EntryPoint=0x00006C90C76 UsbMassStorageDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DBDD18
+ProtectUefiImageCommon - 0x6DC0540
+ - 0x0000000006C8D000 - 0x0000000000005980
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6C92820
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6C927F0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6C927D0
+Loading driver E3752948-B9A1-4770-90C4-DF41C38986BE
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6DBD2C0
+Loading driver at 0x00006C86000 EntryPoint=0x00006C89B36 QemuVideoDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6DBDC98
+ProtectUefiImageCommon - 0x6DBD2C0
+ - 0x0000000006C86000 - 0x0000000000006040
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6C8BEE0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6C8BEC0
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6C8BEA0
+Loading driver D6099B94-CD97-4CC5-8714-7F6312701A8A
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 6D8D040
+Loading driver at 0x00006C80000 EntryPoint=0x00006C83C3C VirtioGpuDxe.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6D8DB98
+ProtectUefiImageCommon - 0x6D8D040
+ - 0x0000000006C80000 - 0x00000000000057C0
+InstallProtocolInterface: 18A031AB-B443-4D1A-A5C0-0C09261E9F71 6C85660
+InstallProtocolInterface: 6A7A5CFF-E8D9-4F70-BADA-75AB3025CE14 6C85640
+[Bds] Entry...
+[BdsDxe] Locate Variable Lock protocol - Success
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C PlatformLangCodes
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C LangCodes
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C BootOptionSupport
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C HwErrRecSupport
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C OsIndicationsSupported
+Variable Driver Auto Update Lang, Lang:eng, PlatformLang:en Status: Success
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: 8BE4DF61-93CA-11D2-AA0D-00E098032B8C PlatformRecovery0000
+PlatformBootManagerBeforeConsole
+Registered NotifyDevPath Event
+PCI Bus First Scanning
+PciBus: Discovered PCI @ [00|00|00]
+
+PciBus: Discovered PCI @ [00|01|00]
+
+PciBus: Discovered PCI @ [00|01|01]
+ BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
+
+PciBus: Discovered PCI @ [00|01|03]
+
+PciBus: Discovered PCI @ [00|02|00]
+ BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
+ BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
+
+PCI Bus Second Scanning
+PciBus: Discovered PCI @ [00|00|00]
+
+PciBus: Discovered PCI @ [00|01|00]
+
+PciBus: Discovered PCI @ [00|01|01]
+ BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
+
+PciBus: Discovered PCI @ [00|01|03]
+
+PciBus: Discovered PCI @ [00|02|00]
+ BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
+ BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
+
+PciBus: Discovered PCI @ [00|00|00]
+
+PciBus: Discovered PCI @ [00|01|00]
+
+PciBus: Discovered PCI @ [00|01|01]
+ BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
+
+PciBus: Discovered PCI @ [00|01|03]
+
+PciBus: Discovered PCI @ [00|02|00]
+ BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
+ BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
+
+PciHostBridge: SubmitResources for PciRoot(0x0)
+ I/O: Granularity/SpecificFlag = 0 / 01
+ Length/Alignment = 0x1000 / 0xFFF
+ Mem: Granularity/SpecificFlag = 32 / 00
+ Length/Alignment = 0x1100000 / 0xFFFFFF
+PciBus: HostBridge->SubmitResources() - Success
+PciHostBridge: NotifyPhase (AllocateResources)
+ RootBridge: PciRoot(0x0)
+ Mem: Base/Length/Alignment = 80000000/1100000/FFFFFF - Success
+ I/O: Base/Length/Alignment = C000/1000/FFF - Success
+PciBus: HostBridge->NotifyPhase(AllocateResources) - Success
+Process Option ROM: BAR Base/Length = 81000000/10000
+PciBus: Resource Map for Root Bridge PciRoot(0x0)
+Type = Io16; Base = 0xC000; Length = 0x1000; Alignment = 0xFFF
+ Base = 0xC000; Length = 0x10; Alignment = 0xF; Owner = PCI [00|01|01:20]
+Type = Mem32; Base = 0x80000000; Length = 0x1100000; Alignment = 0xFFFFFF
+ Base = 0x80000000; Length = 0x1000000; Alignment = 0xFFFFFF; Owner = PCI [00|02|00:10]; Type = PMem32
+ Base = 0x81000000; Length = 0x10000; Alignment = 0xFFFF; Owner = PCI [00|00|00:00]; Type = OpRom
+ Base = 0x81010000; Length = 0x1000; Alignment = 0xFFF; Owner = PCI [00|02|00:18]
+
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D8C818
+InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A 6D8C428
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D8CE18
+InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A 6D8C8A8
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D8BE98
+InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A 6D8B028
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D8BF18
+InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A 6D8B428
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D8BF98
+InstallProtocolInterface: 4CF5B200-68B8-4CA5-9EEC-B23E3F50029A 6D8B828
+InstallProtocolInterface: 30CFE3E7-3DE1-4586-BE20-DEABA1B3B793 0
+OnRootBridgesConnected: root bridges have been connected, installing ACPI tables
+Select Item: 0x19
+Select Item: 0x29
+Select Item: 0x19
+Select Item: 0x28
+Select Item: 0x19
+Select Item: 0x22
+Select Item: 0x19
+Select Item: 0x23
+InstallQemuFwCfgTables: installed 5 tables
+PcRtc: Write 0x20 to CMOS location 0x32
+AcpiS3ContextSave!
+AcpiS3Context: AcpiFacsTable is 0x 7BDD000
+AcpiS3Context: IdtrProfile is 0x 7B6C000
+AcpiS3Context: S3NvsPageTableAddress is 0x 0
+AcpiS3Context: S3DebugBufferAddress is 0x 7B62000
+AcpiS3Context: BootScriptStackBase is 0x 7B63000
+AcpiS3Context: BootScriptStackSize is 0x 8000
+[Variable]END_OF_DXE is signaled
+Initialize variable error flag (FF)
+Select Item: 0x19
+Select Item: 0x28
+InstallProtocolInterface: 60FF8964-E906-41D0-AFED-F241E974E08E 0
+InstallProtocolInterface: FA20568B-548B-4B2B-81EF-1BA08D4A3CEC 0
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x28
+Found LPC Bridge device
+BdsPlatform.c+618: COM1 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x0)/Uart(115200,8,N,1)/VenMsg(E0C14753-F9BE-11D2-9A0C-0090273FC14D)
+BdsPlatform.c+650: COM2 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x1)/Uart(115200,8,N,1)/VenMsg(E0C14753-F9BE-11D2-9A0C-0090273FC14D)
+Found PCI display device
+QemuVideo: QEMU Standard VGA detected
+QemuVideo: Using mmio bar @ 0x81010000
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D77A98
+QemuVideoBochsModeSetup: AvailableFbSize=0x1000000
+Adding Mode 0 as Bochs Internal Mode 0: 640x480, 32-bit
+Adding Mode 1 as Bochs Internal Mode 1: 800x480, 32-bit
+Adding Mode 2 as Bochs Internal Mode 2: 800x600, 32-bit
+Adding Mode 3 as Bochs Internal Mode 3: 832x624, 32-bit
+Adding Mode 4 as Bochs Internal Mode 4: 960x640, 32-bit
+Adding Mode 5 as Bochs Internal Mode 5: 1024x600, 32-bit
+Adding Mode 6 as Bochs Internal Mode 6: 1024x768, 32-bit
+Adding Mode 7 as Bochs Internal Mode 7: 1152x864, 32-bit
+Adding Mode 8 as Bochs Internal Mode 8: 1152x870, 32-bit
+Adding Mode 9 as Bochs Internal Mode 9: 1280x720, 32-bit
+Adding Mode 10 as Bochs Internal Mode 10: 1280x760, 32-bit
+Adding Mode 11 as Bochs Internal Mode 11: 1280x768, 32-bit
+Adding Mode 12 as Bochs Internal Mode 12: 1280x800, 32-bit
+Adding Mode 13 as Bochs Internal Mode 13: 1280x960, 32-bit
+Adding Mode 14 as Bochs Internal Mode 14: 1280x1024, 32-bit
+Adding Mode 15 as Bochs Internal Mode 15: 1360x768, 32-bit
+Adding Mode 16 as Bochs Internal Mode 16: 1366x768, 32-bit
+Adding Mode 17 as Bochs Internal Mode 17: 1400x1050, 32-bit
+Adding Mode 18 as Bochs Internal Mode 18: 1440x900, 32-bit
+Adding Mode 19 as Bochs Internal Mode 19: 1600x900, 32-bit
+Adding Mode 20 as Bochs Internal Mode 20: 1600x1200, 32-bit
+Adding Mode 21 as Bochs Internal Mode 21: 1680x1050, 32-bit
+Adding Mode 22 as Bochs Internal Mode 22: 1920x1080, 32-bit
+Adding Mode 23 as Bochs Internal Mode 23: 1920x1200, 32-bit
+Adding Mode 24 as Bochs Internal Mode 24: 1920x1440, 32-bit
+Adding Mode 25 as Bochs Internal Mode 25: 2000x2000, 32-bit
+Adding Mode 26 as Bochs Internal Mode 26: 2048x1536, 32-bit
+Adding Mode 27 as Bochs Internal Mode 27: 2048x2048, 32-bit
+Adding Mode 28 as Bochs Internal Mode 28: 2560x1440, 32-bit
+Adding Mode 29 as Bochs Internal Mode 29: 2560x1600, 32-bit
+InitializeBochsGraphicsMode: 640x480 @ 32
+PixelBlueGreenRedReserved8BitPerColor
+FrameBufferBase: 0x80000000, FrameBufferSize: 0x12C000
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+InstallProtocolInterface: 9042A9DE-23DC-4A38-96FB-7ADED080516A 75B81B8
+InstallVbeShim: VBE shim installed
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+Select Item: 0xE
+[Bds]RegisterKeyNotify: 000C/0000 80000000/00 Success
+[Bds]RegisterKeyNotify: 0017/0000 80000000/00 Success
+[Bds]RegisterKeyNotify: 0000/000D 80000000/00 Success
+InstallProtocolInterface: 864E1CA8-85EB-4D63-9DCC-6E0FC90FFD55 6D27518
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 709FA18
+InstallProtocolInterface: 215FDD18-BD50-4FEB-890B-58CA0B4739E9 709F938
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 709F818
+InstallProtocolInterface: 215FDD18-BD50-4FEB-890B-58CA0B4739E9 709F738
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D26B98
+InstallProtocolInterface: 215FDD18-BD50-4FEB-890B-58CA0B4739E9 6D26E38
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D27398
+InstallProtocolInterface: BB25CF6F-F1D4-11D2-9A0C-0090273FC1FD 6D263A8
+PciSioSerial: Create SIO child serial device - Success
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+Terminal - Mode 0, Column = 80, Row = 25
+Terminal - Mode 1, Column = 80, Row = 50
+Terminal - Mode 2, Column = 100, Row = 31
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+InstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B 6D04340
+InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA 6D04428
+InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B 6D04358
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6D04918
+InstallProtocolInterface: D3B36F2B-D551-11D4-9A46-0090273FC14D 0
+InstallProtocolInterface: D3B36F2C-D551-11D4-9A46-0090273FC14D 0
+InstallProtocolInterface: D3B36F2D-D551-11D4-9A46-0090273FC14D 0
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+InitializeBochsGraphicsMode: 800x600 @ 32
+PixelBlueGreenRedReserved8BitPerColor
+FrameBufferBase: 0x80000000, FrameBufferSize: 0x1D5000
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+GraphicsConsole video resolution 800 x 600
+Graphics - Mode 0, Column = 80, Row = 25
+Graphics - Mode 1, Column = 0, Row = 0
+Graphics - Mode 2, Column = 100, Row = 31
+Graphics Console Started, Mode: 0
+InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B 6D029B0
+InstallProtocolInterface: D3B36F2C-D551-11D4-9A46-0090273FC14D 0
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+InstallProtocolInterface: 9042A9DE-23DC-4A38-96FB-7ADED080516A 700D020
+InstallProtocolInterface: 387477C1-69C7-11D2-8E39-00A0C969723B 6C5A028
+InstallProtocolInterface: DD9E7534-7762-4698-8C14-F58517A625AA 6C5A040
+InstallProtocolInterface: D3B36F2B-D551-11D4-9A46-0090273FC14D 0
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+PlatformBootManagerAfterConsole
+PlatformBdsPolicyBehavior: not restoring NvVars from disk since flash variables appear to be supported.
+Boot Mode:0
+PlatformBdsConnectSequence
+Select Item: 0x19
+EfiBootManagerConnectAll
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+SataControllerStart START
+InstallProtocolInterface: A1E37052-80D9-4E65-A317-3E9A55C43EC9 6C59AA0
+SataControllerStart END status = Success
+==AtaAtapiPassThru Start== Controller = 6D8BC18
+[primary ] channel [master] [harddisk] device
+Enabled S.M.A.R.T feature at [primary] channel [master] device!
+CalculateBestPioMode: AdvancedPioMode = 3
+IdeInitCalculateMode: PioMode = 4
+CalculateBestUdmaMode: DeviceUDmaMode = 203F
+IdeInitCalculateMode: UdmaMode = 5
+[secondary] channel [master] [cdrom ] device
+CalculateBestPioMode: AdvancedPioMode = 3
+IdeInitCalculateMode: PioMode = 3
+CalculateBestUdmaMode: DeviceUDmaMode = 203F
+IdeInitCalculateMode: UdmaMode = 5
+InstallProtocolInterface: 1D3DE7F0-0807-424F-AA69-11A54E19A46F 6C58040
+InstallProtocolInterface: 143B7632-B81B-4CB7-ABD3-B625A5B9BFFE 6C58090
+InstallProtocolInterface: 19DF145A-B1D4-453F-8507-38816676D7F6 6C57898
+AtaBus - Identify Device: Port 0 PortMultiplierPort 0
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6C57498
+InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B 6C56028
+InstallProtocolInterface: A77B2472-E282-4E9F-A245-C2C0E27BBCC1 6C56058
+InstallProtocolInterface: D432A67F-14DC-484B-B3BB-3F0291849327 6C560B0
+Found TCG support in Port 0 PortMultiplierPort 0
+InstallProtocolInterface: C88B0B6D-0DFC-49A7-9CB4-49074B4C3A78 6C560E8
+Successfully Install Storage Security Protocol on the ATA device
+InstallProtocolInterface: 0167CCC4-D0F7-4F21-A3EF-9E64B7CDCE8B 6C56820
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6C56418
+InstallProtocolInterface: 932F47E6-2362-4002-803E-3CD54B138F85 6C564A8
+InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B 6C53338
+InstallProtocolInterface: A77B2472-E282-4E9F-A245-C2C0E27BBCC1 6C53368
+InstallProtocolInterface: D432A67F-14DC-484B-B3BB-3F0291849327 6C53460
+InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B 6C53C20
+InstallProtocolInterface: 151C8EAE-7F2C-472C-9E54-9828194F6A88 6C53C38
+ BlockSize : 2048
+ LastBlock : 0
+FatOpenDevice: read of part_lba failed No Media
+InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B 6C528A0
+InstallProtocolInterface: 151C8EAE-7F2C-472C-9E54-9828194F6A88 6C528B8
+ BlockSize : 512
+ LastBlock : FBFFF
+InstallProtocolInterface: 09576E91-6D3F-11D2-8E39-00A0C969723B 6C52718
+InstallProtocolInterface: 964E5B21-6459-11D2-8E39-00A0C969723B 6C51D30
+InstallProtocolInterface: A77B2472-E282-4E9F-A245-C2C0E27BBCC1 6C51D60
+InstallProtocolInterface: 8CF2F62C-BC9B-4821-808D-EC9EC421A1A0 6C51DE8
+InstallProtocolInterface: CE345171-BA0B-11D2-8E4F-00A0C969723B 6C51A20
+InstallProtocolInterface: 151C8EAE-7F2C-472C-9E54-9828194F6A88 6C51A38
+ BlockSize : 512
+ LastBlock : FBFC0
+InstallProtocolInterface: 964E5B22-6459-11D2-8E39-00A0C969723B 6C50030
+Installed Fat filesystem on 6C52418
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+SataControllerStart START
+SataControllerStart error return status = Already started
+ BlockSize : 2048
+ LastBlock : 0
+FatOpenDevice: read of part_lba failed No Media
+ BlockSize : 512
+ LastBlock : FBFFF
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+Select Item: 0x19
+[Bds]OsIndication: 0000000000000000
+[Bds]=============Begin Load Options Dumping ...=============
+ Driver Options:
+ SysPrep Options:
+ Boot Options:
+ Boot0000: UiApp 0x0109
+ Boot0001: UEFI QEMU DVD-ROM QM00003 0x0001
+ Boot0002: UEFI QEMU HARDDISK QM00001 0x0001
+ Boot0003: EFI Internal Shell 0x0001
+ PlatformRecovery Options:
+ PlatformRecovery0000: Default PlatformRecovery 0x0001
+[Bds]=============End Load Options Dumping=============
+[Bds]BdsWait ...Zzzzzzzzzzzz...
+[Bds]Exit the waiting!
+[Bds]Stop Hotkey Service!
+[Bds]UnregisterKeyNotify: 000C/0000 Success
+[Bds]UnregisterKeyNotify: 0017/0000 Success
+[Bds]UnregisterKeyNotify: 0000/000D Success
+Memory Previous Current Next
+ Type Pages Pages Pages
+====== ======== ======== ========
+ 0A 00000080 00000022 00000080
+ 09 00000010 00000008 00000010
+ 00 00000080 00000022 00000080
+ 05 00000100 0000003C 00000100
+ 06 00000100 000000B1 00000100
+[Bds]Booting UEFI QEMU DVD-ROM QM00003
+FatOpenDevice: read of part_lba failed No Media
+ BlockSize : 2048
+ LastBlock : 0
+FatOpenDevice: read of part_lba failed No Media
+[Bds] Expand PciRoot(0x0)/Pci(0x1,0x1)/Ata(Secondary,Master,0x0) -> <null string>
+Memory Previous Current Next
+ Type Pages Pages Pages
+====== ======== ======== ========
+ 0A 00000080 00000022 00000080
+ 09 00000010 00000008 00000010
+ 00 00000080 00000022 00000080
+ 05 00000100 0000003C 00000100
+ 06 00000100 000000B1 00000100
+[Bds]Booting UEFI QEMU HARDDISK QM00001
+ BlockSize : 512
+ LastBlock : FBFFF
+ BlockSize : 512
+ LastBlock : FBFFF
+[Bds] Expand PciRoot(0x0)/Pci(0x1,0x1)/Ata(Primary,Master,0x0) -> <null string>
+Memory Previous Current Next
+ Type Pages Pages Pages
+====== ======== ======== ========
+ 0A 00000080 00000022 00000080
+ 09 00000010 00000008 00000010
+ 00 00000080 00000022 00000080
+ 05 00000100 0000003C 00000100
+ 06 00000100 000000B1 00000100
+[Bds]Booting EFI Internal Shell
+[Bds] Expand Fv(7CB8BDC9-F8EB-4F34-AAEA-3EE4AF6516A1)/FvFile(7C04A583-9E3E-4F1C-AD65-E05268D0B4D1) -> Fv(7CB8BDC9-F8EB-4F34-AAEA-3EE4AF6516A1)/FvFile(7C04A583-9E3E-4F1C-AD65-E05268D0B4D1)
+InstallProtocolInterface: 5B1B31A1-9562-11D2-8E3F-00A0C969723B 66A66C0
+Loading driver at 0x000064E4000 EntryPoint=0x0000652AC78 Shell.efi
+InstallProtocolInterface: BC62157E-3E33-4FEC-9920-2D3B36D750DF 6D77798
+ProtectUefiImageCommon - 0x66A66C0
+ - 0x00000000064E4000 - 0x00000000000E0A80
+InstallProtocolInterface: 387477C2-69C7-11D2-8E39-00A0C969723B 66A32A0
+InstallProtocolInterface: 752F3136-4E16-4FDC-A22A-E5F46812F4CA 66A2018
+InstallProtocolInterface: 6302D008-7F9B-4F30-87AC-60C9FEF5DA4E 65C01E0
diff --git a/Lessons/Lesson_41/debug_parsed.log b/Lessons/Lesson_41/debug_parsed.log
new file mode 100644
index 0000000..125153f
--- /dev/null
+++ b/Lessons/Lesson_41/debug_parsed.log
@@ -0,0 +1,1622 @@
+SecCoreStartupWithStack(0xFFFCC000, 0x820000)
+Register PPI Notify: gEfiPeiSecurity2PpiGuid
+Install PPI: gEfiFirmwareFileSystem2Guid
+Install PPI: gEfiFirmwareFileSystem3Guid
+The 0th FV start address is 0x00000820000, size is 0x000E0000, handle is 0x820000
+Register PPI Notify: gEfiPeiFirmwareVolumeInfoPpiGuid
+Register PPI Notify: gEfiPeiFirmwareVolumeInfo2PpiGuid
+Install PPI: gEfiPeiLoadFilePpiGuid
+Install PPI: gEfiTemporaryRamSupportPpiGuid
+DiscoverPeimsAndOrderWithApriori(): Found 0x7 PEI FFS files in the 0th FV
+Loading PEIM PcdPeim
+Loading PEIM at 0x0000082B940 EntryPoint=0x0000082E9EA PcdPeim.efi
+Install PPI: gPcdPpiGuid
+Install PPI: gEfiPeiPcdPpiGuid
+Install PPI: gGetPcdInfoPpiGuid
+Install PPI: gEfiGetPcdInfoPpiGuid
+Register PPI Notify: gEfiEndOfPeiSignalPpiGuid
+Loading PEIM ReportStatusCodeRouterPei
+Loading PEIM at 0x00000830340 EntryPoint=0x00000831607 ReportStatusCodeRouterPei.efi
+Install PPI: gEfiPeiRscHandlerPpiGuid
+Install PPI: gEfiPeiStatusCodePpiGuid
+Loading PEIM StatusCodeHandlerPei
+Loading PEIM at 0x00000832240 EntryPoint=0x00000833341 StatusCodeHandlerPei.efi
+Loading PEIM PlatformPei
+Loading PEIM at 0x00000834040 EntryPoint=0x0000083946B PlatformPei.efi
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Platform PEIM Loaded
+CMOS:
+00: 21 00 36 00 18 00 06 16 07 21 26 02 00 80 00 00
+10: 50 00 F0 00 07 80 02 FF FF 2F 00 00 04 10 FF FF
+20: C8 00 04 3F 00 00 00 00 00 00 00 00 00 00 00 00
+30: FF FF 20 00 00 07 00 20 30 00 00 00 00 12 00 00
+40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
+Select Item: 0x19
+Select Item: 0x28
+S3 support was detected on QEMU
+Install PPI: gEfiPeiMasterBootModePpiGuid
+Select Item: 0x19
+Select Item: 0x25
+Select Item: 0x19
+Select Item: 0x19
+GetFirstNonAddress: Pci64Base=0x800000000 Pci64Size=0x800000000
+Select Item: 0x5
+MaxCpuCountInitialization: QEMU v2.7 reset bug: BootCpuCount=1 Present=0
+MaxCpuCountInitialization: BootCpuCount=0 mMaxCpuCount=1
+PublishPeiMemory: mPhysMemAddressWidth=36 PeiMemoryCap=65800 KB
+PeiInstallPeiMemory MemoryBegin 0x3F36000, MemoryLength 0x4042000
+QemuInitializeRam called
+Select Item: 0x19
+Select Item: 0x25
+Reserved variable store memory: 0x7EF4000; size: 528kb
+Platform PEI Firmware Volume Initialization
+Install PPI: gEfiPeiFirmwareVolumeInfoPpiGuid
+Notify: PPI Guid: gEfiPeiFirmwareVolumeInfoPpiGuid, Peim notify entry point: 825C08
+The 1th FV start address is 0x00000900000, size is 0x00C00000, handle is 0x900000
+Select Item: 0x19
+Register PPI Notify: gEfiPeiMpServicesPpiGuid
+Select Item: 0x19
+Temp Stack : BaseAddress=0x818000 Length=0x8000
+Temp Heap : BaseAddress=0x810000 Length=0x8000
+Total temporary memory: 65536 bytes.
+ temporary memory stack ever used: 29560 bytes.
+ temporary memory heap used for HobList: 6608 bytes.
+ temporary memory heap occupied by memory pages: 0 bytes.
+Memory Allocation 0x0000000A 0x7F78000 - 0x7FFFFFF
+Memory Allocation 0x0000000A 0x810000 - 0x81FFFF
+Memory Allocation 0x0000000A 0x807000 - 0x807FFF
+Memory Allocation 0x0000000A 0x800000 - 0x805FFF
+Memory Allocation 0x0000000A 0x806000 - 0x806FFF
+Memory Allocation 0x00000006 0x7EF4000 - 0x7F77FFF
+Memory Allocation 0x0000000A 0x820000 - 0x8FFFFF
+Memory Allocation 0x00000004 0x900000 - 0x14FFFFF
+Old Stack size 32768, New stack size 131072
+Stack Hob: BaseAddress=0x3F36000 Length=0x20000
+Heap Offset = 0x3746000 Stack Offset = 0x3736000
+TemporaryRamMigration(0x810000, 0x3F4E000, 0x10000)
+Loading PEIM PeiCore
+Loading PEIM at 0x00007EE8000 EntryPoint=0x00007EEFD64 PeiCore.efi
+Reinstall PPI: gEfiFirmwareFileSystem2Guid
+Reinstall PPI: gEfiFirmwareFileSystem3Guid
+Reinstall PPI: gEfiPeiLoadFilePpiGuid
+Install PPI: gEfiPeiMemoryDiscoveredPpiGuid
+Loading PEIM DxeIpl
+Loading PEIM at 0x00007EE3000 EntryPoint=0x00007EE5EF7 DxeIpl.efi
+Install PPI: gEfiPeiDecompressPpiGuid
+Install PPI: gEfiDxeIplPpiGuid
+Loading PEIM S3Resume2Pei
+Loading PEIM at 0x00007EDF000 EntryPoint=0x00007EE12E6 S3Resume2Pei.efi
+Install PPI: gEfiPeiS3Resume2PpiGuid
+Loading PEIM CpuMpPei
+Loading PEIM at 0x00007ED3000 EntryPoint=0x00007EDB200 CpuMpPei.efi
+Register PPI Notify: gEfiPeiMemoryDiscoveredPpiGuid
+Notify: PPI Guid: gEfiPeiMemoryDiscoveredPpiGuid, Peim notify entry point: 7ED9889
+AP Loop Mode is 1
+GetMicrocodePatchInfoFromHob: Microcode patch cache HOB is not found.
+CPU[0000]: Microcode revision = 00000000, expected = 00000000
+Register PPI Notify: gEdkiiS3SmmInitDoneGuid
+Does not find any stored CPU BIST information from PPI!
+ APICID - 0x00000000, BIST - 0x00000000
+Install PPI: gEfiSecPlatformInformation2PpiGuid
+Install PPI: gEdkiiPeiMpServices2PpiGuid
+Install PPI: gEfiPeiMpServicesPpiGuid
+Notify: PPI Guid: gEfiPeiMpServicesPpiGuid, Peim notify entry point: 835FD3
+PlatformPei: ClearCacheOnMpServicesAvailable
+DiscoverPeimsAndOrderWithApriori(): Found 0x0 PEI FFS files in the 1th FV
+DXE IPL Entry
+Loading PEIM DxeCore
+Loading PEIM at 0x00007EA4000 EntryPoint=0x00007EAFC72 DxeCore.efi
+Loading DXE CORE at 0x00007EA4000 EntryPoint=0x00007EAFC72
+AddressBits=36 5LevelPaging=0 1GPage=0
+Pml5=1 Pml4=1 Pdp=64 TotalPage=66
+Install PPI: gEfiEndOfPeiSignalPpiGuid
+Notify: PPI Guid: gEfiEndOfPeiSignalPpiGuid, Peim notify entry point: 82D91E
+CoreInitializeMemoryServices:
+ BaseAddress - 0x3F59000 Length - 0x3CA7000 MinimalMemorySizeNeeded - 0x320000
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7EC6EA8
+ProtectUefiImageCommon - 0x7EC6EA8
+ - 0x0000000007EA4000 - 0x0000000000026000
+DxeMain: MemoryBaseAddress=0x3F59000 MemoryLength=0x3CA7000
+HOBLIST address in DXE = 0x78EA018
+Memory Allocation 0x0000000A 0x7F78000 - 0x7FFFFFF
+Memory Allocation 0x0000000A 0x810000 - 0x81FFFF
+Memory Allocation 0x0000000A 0x807000 - 0x807FFF
+Memory Allocation 0x0000000A 0x800000 - 0x805FFF
+Memory Allocation 0x0000000A 0x806000 - 0x806FFF
+Memory Allocation 0x00000006 0x7EF4000 - 0x7F77FFF
+Memory Allocation 0x0000000A 0x820000 - 0x8FFFFF
+Memory Allocation 0x00000004 0x900000 - 0x14FFFFF
+Memory Allocation 0x00000004 0x7E84000 - 0x7EA3FFF
+Memory Allocation 0x00000003 0x7EE8000 - 0x7EF3FFF
+Memory Allocation 0x00000003 0x7EE3000 - 0x7EE7FFF
+Memory Allocation 0x00000003 0x7EDF000 - 0x7EE2FFF
+Memory Allocation 0x00000003 0x7ED3000 - 0x7EDEFFF
+Memory Allocation 0x00000004 0x7ECA000 - 0x7ED2FFF
+Memory Allocation 0x00000003 0x7EA4000 - 0x7EC9FFF
+Memory Allocation 0x00000003 0x7EA4000 - 0x7EC9FFF
+Memory Allocation 0x00000004 0x7E84000 - 0x7EA3FFF
+Memory Allocation 0x00000004 0x7C00000 - 0x7DFFFFF
+Memory Allocation 0x00000007 0x7E00000 - 0x7E83FFF
+Memory Allocation 0x00000004 0x3F36000 - 0x3F55FFF
+FV Hob 0x900000 - 0x14FFFFF
+InstallProtocolInterface: gEfiDecompressProtocolGuid 7EC6070
+InstallProtocolInterface: gEfiFirmwareVolumeBlock2ProtocolGuid 78E6CB0
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 78E6D98
+InstallProtocolInterface: gEfiFirmwareVolume2ProtocolGuid 78E6630
+InstallProtocolInterface: EE4E5898-3914-4259-9D6E-DC7BD79403CF 7EC5D30
+Loading driver DevicePathDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75CE140
+Loading driver at 0x000075A6000 EntryPoint=0x000075ADD77 DevicePathDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75CE718
+ProtectUefiImageCommon - 0x75CE140
+ - 0x00000000075A6000 - 0x000000000000B240
+InstallProtocolInterface: gEfiDevicePathUtilitiesProtocolGuid 75B0F00
+InstallProtocolInterface: gEfiDevicePathToTextProtocolGuid 75B0EE0
+InstallProtocolInterface: gEfiDevicePathFromTextProtocolGuid 75B0EC0
+Loading driver PcdDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75BD1C0
+Loading driver at 0x000075A0000 EntryPoint=0x000075A3833 PcdDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75BDB98
+ProtectUefiImageCommon - 0x75BD1C0
+ - 0x00000000075A0000 - 0x0000000000005A80
+InstallProtocolInterface: gPcdProtocolGuid 75A5700
+InstallProtocolInterface: gEfiPcdProtocolGuid 75A5660
+InstallProtocolInterface: gGetPcdInfoProtocolGuid 75A5630
+InstallProtocolInterface: gEfiGetPcdInfoProtocolGuid 75A5610
+Loading driver AmdSevDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75BC4C0
+Loading driver at 0x000075B6000 EntryPoint=0x000075B79B7 AmdSevDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75BC718
+ProtectUefiImageCommon - 0x75BC4C0
+ - 0x00000000075B6000 - 0x0000000000002E80
+Error: Image at 000075B6000 start failed: Unsupported
+Loading driver FvbServicesRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75BC4C0
+Loading driver at 0x00007AE7000 EntryPoint=0x00007AE9C52 FvbServicesRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75BC918
+ProtectUefiImageCommon - 0x75BC4C0
+ - 0x0000000007AE7000 - 0x0000000000008000
+QEMU Flash: Attempting flash detection at FFC00010
+QemuFlashDetected => FD behaves as FLASH
+QemuFlashDetected => Yes
+Installing QEMU flash FVB
+InstallProtocolInterface: gEfiFirmwareVolumeBlock2ProtocolGuid 79EE8B0
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 75BBC18
+Loading driver ReportStatusCodeRouterRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75BB9C0
+Loading driver at 0x00007AE1000 EntryPoint=0x00007AE374D ReportStatusCodeRouterRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75BB218
+ProtectUefiImageCommon - 0x75BB9C0
+ - 0x0000000007AE1000 - 0x0000000000006000
+InstallProtocolInterface: gEfiRscHandlerProtocolGuid 7AE5060
+InstallProtocolInterface: gEfiStatusCodeRuntimeProtocolGuid 7AE5040
+Loading driver RuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 759F040
+Loading driver at 0x00007ADB000 EntryPoint=0x00007ADD4A8 RuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 759FE18
+ProtectUefiImageCommon - 0x759F040
+ - 0x0000000007ADB000 - 0x0000000000006000
+InstallProtocolInterface: gEfiRuntimeArchProtocolGuid 7ADF040
+Loading driver SecurityStubDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 759F3C0
+Loading driver at 0x000075B3000 EntryPoint=0x000075B4539 SecurityStubDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 759F718
+ProtectUefiImageCommon - 0x759F3C0
+ - 0x00000000075B3000 - 0x0000000000002B80
+InstallProtocolInterface: gEfiSecurity2ArchProtocolGuid 75B59E8
+InstallProtocolInterface: gEfiSecurityArchProtocolGuid 75B59E0
+InstallProtocolInterface: gEfiDeferredImageLoadProtocolGuid 75B59C0
+Loading driver EbcDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75B8940
+Loading driver at 0x00007593000 EntryPoint=0x00007595F70 EbcDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75B8718
+ProtectUefiImageCommon - 0x75B8940
+ - 0x0000000007593000 - 0x0000000000005E00
+InstallProtocolInterface: gEfiEbcProtocolGuid 75B8498
+InstallProtocolInterface: gEdkiiPeCoffImageEmulatorProtocolGuid 7598B60
+InstallProtocolInterface: gEfiDebugSupportProtocolGuid 75B7F18
+InstallProtocolInterface: gEfiEbcVmTestProtocolGuid 75B7B98
+Loading driver Legacy8259
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75B70C0
+Loading driver at 0x0000759B000 EntryPoint=0x0000759C2D5 Legacy8259.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75B7A18
+ProtectUefiImageCommon - 0x75B70C0
+ - 0x000000000759B000 - 0x0000000000001D80
+InstallProtocolInterface: gEfiLegacy8259ProtocolGuid 759CC00
+Loading driver CpuIo2Dxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75B7440
+Loading driver at 0x0000759D000 EntryPoint=0x0000759E406 CpuIo2Dxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75B6F18
+ProtectUefiImageCommon - 0x75B7440
+ - 0x000000000759D000 - 0x0000000000002000
+InstallProtocolInterface: gEfiCpuIo2ProtocolGuid 759EEC0
+Loading driver CpuDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 75B60C0
+Loading driver at 0x00007171000 EntryPoint=0x00007179EB1 CpuDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 75B6A18
+ProtectUefiImageCommon - 0x75B60C0
+ - 0x0000000007171000 - 0x0000000000010780
+Paging: added 512 pages to page table pool
+CurrentPagingContext:
+ MachineType - 0x8664
+ PageTableBase - 0x7C01000
+ Attributes - 0xC0000002
+InstallProtocolInterface: gEfiCpuArchProtocolGuid 71812A0
+MemoryProtectionCpuArchProtocolNotify:
+ProtectUefiImageCommon - 0x7EC6EA8
+ - 0x0000000007EA4000 - 0x0000000000026000
+ProtectUefiImageCommon - 0x75CE140
+ - 0x00000000075A6000 - 0x000000000000B240
+ProtectUefiImageCommon - 0x75BD1C0
+ - 0x00000000075A0000 - 0x0000000000005A80
+ProtectUefiImageCommon - 0x75BC4C0
+ - 0x0000000007AE7000 - 0x0000000000008000
+SetUefiImageMemoryAttributes - 0x0000000007AE7000 - 0x0000000000001000 (0x0000000000004000)
+SetUefiImageMemoryAttributes - 0x0000000007AE8000 - 0x0000000000005000 (0x0000000000020000)
+SetUefiImageMemoryAttributes - 0x0000000007AED000 - 0x0000000000002000 (0x0000000000004000)
+ProtectUefiImageCommon - 0x75BB9C0
+ - 0x0000000007AE1000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007AE1000 - 0x0000000000001000 (0x0000000000004000)
+SetUefiImageMemoryAttributes - 0x0000000007AE2000 - 0x0000000000003000 (0x0000000000020000)
+SetUefiImageMemoryAttributes - 0x0000000007AE5000 - 0x0000000000002000 (0x0000000000004000)
+ProtectUefiImageCommon - 0x759F040
+ - 0x0000000007ADB000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007ADB000 - 0x0000000000001000 (0x0000000000004000)
+SetUefiImageMemoryAttributes - 0x0000000007ADC000 - 0x0000000000003000 (0x0000000000020000)
+SetUefiImageMemoryAttributes - 0x0000000007ADF000 - 0x0000000000002000 (0x0000000000004000)
+ProtectUefiImageCommon - 0x759F3C0
+ - 0x00000000075B3000 - 0x0000000000002B80
+ProtectUefiImageCommon - 0x75B8940
+ - 0x0000000007593000 - 0x0000000000005E00
+ProtectUefiImageCommon - 0x75B70C0
+ - 0x000000000759B000 - 0x0000000000001D80
+ProtectUefiImageCommon - 0x75B7440
+ - 0x000000000759D000 - 0x0000000000002000
+ProtectUefiImageCommon - 0x75B60C0
+ - 0x0000000007171000 - 0x0000000000010780
+ConvertPages: failed to find range A0000 - FFFFF
+ConvertPages: failed to find range 80000000 - FBFFFFFF
+ConvertPages: failed to find range FEC00000 - FEC00FFF
+Failed to update capability: [8] 00000000FED00000 - 00000000FED003FF (C700000000000001 -> C700000000026001)
+ConvertPages: failed to find range FEE00000 - FEEFFFFF
+ConvertPages: failed to find range FFC00000 - FFFFFFFF
+AP Loop Mode is 1
+GetMicrocodePatchInfoFromHob: MicrocodeBase = 0x0, MicrocodeSize = 0x0
+CPU[0000]: Microcode revision = 00000000, expected = 00000000
+Detect CPU count: 1
+InstallProtocolInterface: gEfiMpServiceProtocolGuid 71814C0
+Loading driver IncompatiblePciDeviceSupportDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 718B0C0
+Loading driver at 0x00007187000 EntryPoint=0x0000718806E IncompatiblePciDeviceSupportDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 718B418
+ProtectUefiImageCommon - 0x718B0C0
+ - 0x0000000007187000 - 0x0000000000001F40
+InstallProtocolInterface: gEfiIncompatiblePciDeviceSupportProtocolGuid 7188E58
+Loading driver PciHotPlugInitDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 718A1C0
+Loading driver at 0x00007162000 EntryPoint=0x000071652EF PciHotPlugInitDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 718A018
+ProtectUefiImageCommon - 0x718A1C0
+ - 0x0000000007162000 - 0x0000000000004BC0
+InstallProtocolInterface: gEfiPciHotPlugInitProtocolGuid 7166AC0
+Loading driver ResetSystemRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 718A540
+Loading driver at 0x00007AD5000 EntryPoint=0x00007AD7742 ResetSystemRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7189F98
+ProtectUefiImageCommon - 0x718A540
+ - 0x0000000007AD5000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007AD5000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AD6000 - 0x0000000000003000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AD9000 - 0x0000000000002000 (0x0000000000004008)
+InstallProtocolInterface: gEfiResetArchProtocolGuid 0
+InstallProtocolInterface: gEfiResetNotificationProtocolGuid 7AD9108
+InstallProtocolInterface: gEdkiiPlatformSpecificResetFilterProtocolGuid 7AD90C8
+InstallProtocolInterface: gEdkiiPlatformSpecificResetHandlerProtocolGuid 7AD9088
+Loading driver Metronome
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7189240
+Loading driver at 0x00007183000 EntryPoint=0x00007183FE4 Metronome.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7189C18
+ProtectUefiImageCommon - 0x7189240
+ - 0x0000000007183000 - 0x0000000000001E40
+InstallProtocolInterface: gEfiMetronomeArchProtocolGuid 7184CD0
+Loading driver PrintDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7186CC0
+Loading driver at 0x0000715C000 EntryPoint=0x0000715D86E PrintDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7186A98
+ProtectUefiImageCommon - 0x7186CC0
+ - 0x000000000715C000 - 0x0000000000002880
+InstallProtocolInterface: gEfiPrint2ProtocolGuid 715E6E0
+InstallProtocolInterface: gEfiPrint2SProtocolGuid 715E680
+Loading driver HiiDatabase
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7186340
+Loading driver at 0x00007122000 EntryPoint=0x00007125826 HiiDatabase.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7185018
+ProtectUefiImageCommon - 0x7186340
+ - 0x0000000007122000 - 0x000000000001CFC0
+InstallProtocolInterface: gEfiHiiFontProtocolGuid 713EBA8
+InstallProtocolInterface: gEfiHiiStringProtocolGuid 713EC20
+InstallProtocolInterface: gEfiHiiDatabaseProtocolGuid 713EC48
+InstallProtocolInterface: gEfiHiiConfigRoutingProtocolGuid 713ECA0
+InstallProtocolInterface: gEfiConfigKeywordHandlerProtocolGuid 713ECD0
+InstallProtocolInterface: gEfiHiiImageProtocolGuid 713EBC8
+InstallProtocolInterface: gEfiHiiImageExProtocolGuid 713EBF0
+Loading driver NullMemoryTestDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 71851C0
+Loading driver at 0x00007159000 EntryPoint=0x0000715A134 NullMemoryTestDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7185518
+ProtectUefiImageCommon - 0x71851C0
+ - 0x0000000007159000 - 0x00000000000020C0
+InstallProtocolInterface: gEfiGenericMemTestProtocolGuid 715AF20
+Loading driver AcpiTableDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 71820C0
+Loading driver at 0x0000714B000 EntryPoint=0x0000714EC72 AcpiTableDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7182B18
+ProtectUefiImageCommon - 0x71820C0
+ - 0x000000000714B000 - 0x0000000000006CC0
+InstallProtocolInterface: gEfiAcpiTableProtocolGuid 7182420
+InstallProtocolInterface: gEfiAcpiSdtProtocolGuid 7182430
+Loading driver DpcDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7158040
+Loading driver at 0x00007156000 EntryPoint=0x00007157214 DpcDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7158D18
+ProtectUefiImageCommon - 0x7158040
+ - 0x0000000007156000 - 0x0000000000002000
+InstallProtocolInterface: gEfiDpcProtocolGuid 7157CD0
+Loading driver IoMmuDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7158440
+Loading driver at 0x00007147000 EntryPoint=0x000071494CB IoMmuDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7158C18
+ProtectUefiImageCommon - 0x7158440
+ - 0x0000000007147000 - 0x0000000000003B00
+InstallProtocolInterface: gIoMmuAbsentProtocolGuid 0
+Loading driver EmuVariableFvbRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7161B40
+Loading driver at 0x00007ACF000 EntryPoint=0x00007AD13C2 EmuVariableFvbRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7158818
+ProtectUefiImageCommon - 0x7161B40
+ - 0x0000000007ACF000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007ACF000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AD0000 - 0x0000000000003000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AD3000 - 0x0000000000002000 (0x0000000000004008)
+EMU Variable FVB Started
+Disabling EMU Variable FVB since flash variables appear to be supported.
+Error: Image at 00007ACF000 start failed: Aborted
+SetUefiImageMemoryAttributes - 0x0000000007ACF000 - 0x0000000000006000 (0x0000000000000008)
+Loading driver VariableRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7161B40
+Loading driver at 0x00007AC6000 EntryPoint=0x00007ACF08E VariableRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7161098
+ProtectUefiImageCommon - 0x7161B40
+ - 0x0000000007AC6000 - 0x000000000000F000
+SetUefiImageMemoryAttributes - 0x0000000007AC6000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AC7000 - 0x000000000000C000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AD3000 - 0x0000000000002000 (0x0000000000004008)
+VarCheckLibRegisterSetVariableCheckHandler - 0x7ACA263 Success
+Variable driver common space: 0x3FF9C 0x3FF9C 0x3FF9C
+Variable driver will work with auth variable format!
+InstallProtocolInterface: gEdkiiVariableLockProtocolGuid 7AD3470
+InstallProtocolInterface: gEdkiiVarCheckProtocolGuid 7AD3440
+InstallProtocolInterface: gEfiVariableArchProtocolGuid 0
+VarCheckLibRegisterSetVariableCheckHandler - 0x7AC8DAD Success
+InstallProtocolInterface: gEdkiiVariablePolicyProtocolGuid 7AD33C0
+Loading driver StatusCodeHandlerRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7160C40
+Loading driver at 0x00007AC1000 EntryPoint=0x00007AC2F48 StatusCodeHandlerRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7160B18
+ProtectUefiImageCommon - 0x7160C40
+ - 0x0000000007AC1000 - 0x0000000000005000
+SetUefiImageMemoryAttributes - 0x0000000007AC1000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AC2000 - 0x0000000000003000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AC5000 - 0x0000000000001000 (0x0000000000004008)
+Loading driver Timer
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7160440
+Loading driver at 0x00007152000 EntryPoint=0x00007153058 Timer.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 715F018
+ProtectUefiImageCommon - 0x7160440
+ - 0x0000000007152000 - 0x0000000000001D80
+InstallProtocolInterface: gEfiTimerArchProtocolGuid 7153C00
+Loading driver PciHostBridgeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 715F0C0
+Loading driver at 0x00007110000 EntryPoint=0x00007114D61 PciHostBridgeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 715FB98
+ProtectUefiImageCommon - 0x715F0C0
+ - 0x0000000007110000 - 0x0000000000008F80
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+PciHostBridgeUtilityInitRootBridge: populated root bus 0, with room for 255 subordinate bus(es)
+RootBridge: PciRoot(0x0)
+ Support/Attr: 70069 / 70069
+ DmaAbove4G: No
+NoExtConfSpace: Yes
+ AllocAttr: 3 (CombineMemPMem Mem64Decode)
+ Bus: 0 - FF Translation=0
+ Io: C000 - FFFF Translation=0
+ Mem: 80000000 - FBFFFFFF Translation=0
+ MemAbove4G: 800000000 - FFFFFFFFF Translation=0
+ PMem: FFFFFFFFFFFFFFFF - 0 Translation=0
+ PMemAbove4G: FFFFFFFFFFFFFFFF - 0 Translation=0
+InstallProtocolInterface: gEfiPciHostBridgeResourceAllocationProtocolGuid 715F4C0
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 715F918
+InstallProtocolInterface: gEfiPciRootBridgeIoProtocolGuid 71551F0
+Loading driver SetupBrowser
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7155440
+Loading driver at 0x000070DE000 EntryPoint=0x000070E076B SetupBrowser.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7155718
+ProtectUefiImageCommon - 0x7155440
+ - 0x00000000070DE000 - 0x0000000000018840
+InstallProtocolInterface: gEfiFormBrowser2ProtocolGuid 70F6370
+InstallProtocolInterface: gEdkiiFormBrowserEx2ProtocolGuid 70F63A0
+InstallProtocolInterface: gEdkiiFormBrowserExProtocolGuid 70F6380
+Loading driver SmbiosDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 71542C0
+Loading driver at 0x0000711C000 EntryPoint=0x0000711F04C SmbiosDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7154B18
+ProtectUefiImageCommon - 0x71542C0
+ - 0x000000000711C000 - 0x0000000000005280
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x19
+Select Item: 0x26
+DetectSmbiosVersion: SMBIOS version from QEMU: 0x0208
+InstallProtocolInterface: gEfiSmbiosProtocolGuid 7121170
+Loading driver QemuFwCfgAcpiPlatform
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7146B40
+Loading driver at 0x00007109000 EntryPoint=0x0000710CFFD QemuFwCfgAcpiPlatform.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7154598
+ProtectUefiImageCommon - 0x7146B40
+ - 0x0000000007109000 - 0x00000000000062C0
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+AcpiPlatformEntryPoint: waiting for root bridges to be connected, registered callback
+Loading driver S3SaveStateDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7146140
+Loading driver at 0x00007102000 EntryPoint=0x00007106171 S3SaveStateDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7146398
+ProtectUefiImageCommon - 0x7146140
+ - 0x0000000007102000 - 0x0000000000006740
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x28
+InstallProtocolInterface: gEfiLockBoxProtocolGuid 0
+InstallProtocolInterface: gEfiS3SaveStateProtocolGuid 71084A0
+Loading driver tftpDynamicCommand
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 71450C0
+Loading driver at 0x000070D3000 EntryPoint=0x000070D95F0 tftpDynamicCommand.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7146498
+InstallProtocolInterface: gEfiHiiPackageListProtocolGuid 70DB9B0
+ProtectUefiImageCommon - 0x71450C0
+ - 0x00000000070D3000 - 0x000000000000A500
+InstallProtocolInterface: gEfiShellDynamicCommandProtocolGuid 70DB5C0
+Loading driver httpDynamicCommand
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7142B40
+Loading driver at 0x000070B9000 EntryPoint=0x000070C0D6B httpDynamicCommand.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7142E18
+InstallProtocolInterface: gEfiHiiPackageListProtocolGuid 70C3770
+ProtectUefiImageCommon - 0x7142B40
+ - 0x00000000070B9000 - 0x000000000000CA00
+InstallProtocolInterface: gEfiShellDynamicCommandProtocolGuid 70C32C0
+Loading driver LinuxInitrdDynamicShellCommand
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 71422C0
+Loading driver at 0x000070CB000 EntryPoint=0x000070CFF59 LinuxInitrdDynamicShellCommand.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 711B018
+InstallProtocolInterface: gEfiHiiPackageListProtocolGuid 70D1F70
+ProtectUefiImageCommon - 0x71422C0
+ - 0x00000000070CB000 - 0x0000000000007A80
+InstallProtocolInterface: gEfiShellDynamicCommandProtocolGuid 70D1C50
+Loading driver LogoDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 711AAC0
+Loading driver at 0x000070F8000 EntryPoint=0x000070F8EEF LogoDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 711AE18
+InstallProtocolInterface: gEfiHiiPackageListProtocolGuid 70F9AF0
+ProtectUefiImageCommon - 0x711AAC0
+ - 0x00000000070F8000 - 0x0000000000004A40
+InstallProtocolInterface: gEdkiiPlatformLogoProtocolGuid 70F9940
+Loading driver QemuRamfbDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 711B3C0
+Loading driver at 0x000070B4000 EntryPoint=0x000070B6671 QemuRamfbDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7119D98
+ProtectUefiImageCommon - 0x711B3C0
+ - 0x00000000070B4000 - 0x0000000000004580
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Error: Image at 000070B4000 start failed: Not Found
+Loading driver FaultTolerantWriteDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 711B3C0
+Loading driver at 0x000070AD000 EntryPoint=0x000070B0B2F FaultTolerantWriteDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7119E18
+ProtectUefiImageCommon - 0x711B3C0
+ - 0x00000000070AD000 - 0x0000000000005500
+Ftw: FtwWorkSpaceLba - 0x41, WorkBlockSize - 0x1000, FtwWorkSpaceBase - 0x0
+Ftw: FtwSpareLba - 0x42, SpareBlockSize - 0x1000
+Ftw: NumberOfWorkBlock - 0x1, FtwWorkBlockLba - 0x41
+Ftw: WorkSpaceLbaInSpare - 0x0, WorkSpaceBaseInSpare - 0x0
+Ftw: Remaining work space size - FE0
+InstallProtocolInterface: gEfiFaultTolerantWriteProtocolGuid 70C9028
+NOTICE - AuthVariableLibInitialize() returns Unsupported!
+Variable driver will continue to work without auth variable support!
+RecordSecureBootPolicyVarData GetVariable SecureBoot Status E
+InstallProtocolInterface: gEfiVariableWriteArchProtocolGuid 0
+Loading driver PcRtc
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 71197C0
+Loading driver at 0x00007ABB000 EntryPoint=0x00007ABE044 PcRtc.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7119518
+ProtectUefiImageCommon - 0x71197C0
+ - 0x0000000007ABB000 - 0x0000000000006000
+SetUefiImageMemoryAttributes - 0x0000000007ABB000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007ABC000 - 0x0000000000004000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AC0000 - 0x0000000000001000 (0x0000000000004008)
+InstallProtocolInterface: gEfiRealTimeClockArchProtocolGuid 0
+Loading driver WatchdogTimer
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70FD1C0
+Loading driver at 0x000070B7000 EntryPoint=0x000070B7FBE WatchdogTimer.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70FDA18
+ProtectUefiImageCommon - 0x70FD1C0
+ - 0x00000000070B7000 - 0x0000000000001E00
+InstallProtocolInterface: gEfiWatchdogTimerArchProtocolGuid 70B8C70
+Loading driver MonotonicCounterRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70F7B40
+Loading driver at 0x00007AB7000 EntryPoint=0x00007AB8D8F MonotonicCounterRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70F7098
+ProtectUefiImageCommon - 0x70F7B40
+ - 0x0000000007AB7000 - 0x0000000000004000
+SetUefiImageMemoryAttributes - 0x0000000007AB7000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AB8000 - 0x0000000000002000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007ABA000 - 0x0000000000001000 (0x0000000000004008)
+InstallProtocolInterface: gEfiMonotonicCounterArchProtocolGuid 0
+Loading driver CapsuleRuntimeDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70F72C0
+Loading driver at 0x00007AB3000 EntryPoint=0x00007AB4FE8 CapsuleRuntimeDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70C8F98
+ProtectUefiImageCommon - 0x70F72C0
+ - 0x0000000007AB3000 - 0x0000000000004000
+SetUefiImageMemoryAttributes - 0x0000000007AB3000 - 0x0000000000001000 (0x0000000000004008)
+SetUefiImageMemoryAttributes - 0x0000000007AB4000 - 0x0000000000002000 (0x0000000000020008)
+SetUefiImageMemoryAttributes - 0x0000000007AB6000 - 0x0000000000001000 (0x0000000000004008)
+InstallProtocolInterface: gEfiCapsuleArchProtocolGuid 0
+Loading driver DriverHealthManagerDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70C8840
+Loading driver at 0x000070A1000 EntryPoint=0x000070A4AC2 DriverHealthManagerDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70C8698
+ProtectUefiImageCommon - 0x70C8840
+ - 0x00000000070A1000 - 0x0000000000005D40
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 70A6AE0
+InstallProtocolInterface: gEfiHiiConfigAccessProtocolGuid 70A6AB0
+Loading driver BdsDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70C60C0
+Loading driver at 0x0000706B000 EntryPoint=0x0000707291F BdsDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70C6A98
+ProtectUefiImageCommon - 0x70C60C0
+ - 0x000000000706B000 - 0x000000000001A740
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+InstallProtocolInterface: gEfiBdsArchProtocolGuid 7084ED0
+Loading driver RamDiskDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70C7340
+Loading driver at 0x0000708B000 EntryPoint=0x00007091A22 RamDiskDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70C6798
+ProtectUefiImageCommon - 0x70C7340
+ - 0x000000000708B000 - 0x000000000000A780
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 70C6598
+InstallProtocolInterface: gEfiHiiConfigAccessProtocolGuid 70954F8
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 70953E0
+InstallProtocolInterface: gEfiHiiConfigAccessProtocolGuid 70B5430
+InstallProtocolInterface: gEfiRamDiskProtocolGuid 7095430
+InstallProtocolInterface: RamDiskDxe 70B5418
+Loading driver DisplayEngine
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70B4740
+Loading driver at 0x00007043000 EntryPoint=0x00007049339 DisplayEngine.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70B4A98
+ProtectUefiImageCommon - 0x70B4740
+ - 0x0000000007043000 - 0x0000000000013440
+InstallProtocolInterface: gEdkiiFormDisplayEngineProtocolGuid 70548D0
+InstallProtocolInterface: gEfiHiiPopupProtocolGuid 70548E8
+Loading driver SmbiosPlatformDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70AA140
+Loading driver at 0x0000709B000 EntryPoint=0x0000709C5CB SmbiosPlatformDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70AA398
+ProtectUefiImageCommon - 0x70AA140
+ - 0x000000000709B000 - 0x0000000000002A80
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x27
+SmbiosAdd: Smbios type 1 with size 0x53 is added to 32-bit table
+SmbiosCreateTable: Initialize 32-bit entry point structure
+SmbiosCreateTable() re-allocate SMBIOS 32-bit table
+SmbiosAdd: Smbios type 3 with size 0x2C is added to 32-bit table
+SmbiosAdd: Smbios type 4 with size 0x46 is added to 32-bit table
+SmbiosAdd: Smbios type 16 with size 0x19 is added to 32-bit table
+SmbiosAdd: Smbios type 17 with size 0x35 is added to 32-bit table
+SmbiosAdd: Smbios type 19 with size 0x21 is added to 32-bit table
+SmbiosAdd: Smbios type 32 with size 0xD is added to 32-bit table
+SmbiosAdd: Smbios type 0 with size 0x4A is added to 32-bit table
+Loading driver BootScriptExecutorDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70A7440
+Loading driver at 0x00007033000 EntryPoint=0x0000703C56E BootScriptExecutorDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70A7098
+ProtectUefiImageCommon - 0x70A7440
+ - 0x0000000007033000 - 0x000000000000F380
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x28
+Loading driver PlatformDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70A00C0
+Loading driver at 0x00007086000 EntryPoint=0x000070886D7 PlatformDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70A0D98
+ProtectUefiImageCommon - 0x70A00C0
+ - 0x0000000007086000 - 0x0000000000004600
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 708A440
+InstallProtocolInterface: gEfiHiiConfigAccessProtocolGuid 708A510
+Loading driver PciBusDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 709F040
+Loading driver at 0x00007024000 EntryPoint=0x00007026A70 PciBusDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 70A0518
+ProtectUefiImageCommon - 0x709F040
+ - 0x0000000007024000 - 0x000000000000EE80
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 7032B60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7032B30
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 7032B10
+InstallProtocolInterface: gEfiPciHotPlugRequestProtocolGuid 7032AF0
+Loading driver VirtioPciDeviceDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 709E0C0
+Loading driver at 0x00007068000 EntryPoint=0x00007069C65 VirtioPciDeviceDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 709EA18
+ProtectUefiImageCommon - 0x709E0C0
+ - 0x0000000007068000 - 0x0000000000002F80
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 706AE20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 706AE00
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 706ADE0
+Loading driver Virtio10
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 709E4C0
+Loading driver at 0x00007063000 EntryPoint=0x00007066346 Virtio10.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 709E798
+ProtectUefiImageCommon - 0x709E4C0
+ - 0x0000000007063000 - 0x0000000000004B00
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 70679A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7067980
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 7067960
+Loading driver VirtioBlkDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70620C0
+Loading driver at 0x0000705E000 EntryPoint=0x00007060230 VirtioBlkDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7062A98
+ProtectUefiImageCommon - 0x70620C0
+ - 0x000000000705E000 - 0x0000000000003500
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 70613C0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 70613A0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 7061380
+Loading driver VirtioScsiDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7062540
+Loading driver at 0x0000705A000 EntryPoint=0x0000705C752 VirtioScsiDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7096018
+ProtectUefiImageCommon - 0x7062540
+ - 0x000000000705A000 - 0x00000000000039C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 705D880
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 705D860
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 705D840
+Loading driver VirtioRngDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70960C0
+Loading driver at 0x00007057000 EntryPoint=0x00007058D06 VirtioRngDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7096A18
+ProtectUefiImageCommon - 0x70960C0
+ - 0x0000000007057000 - 0x0000000000002F00
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 7059DA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7059D80
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 7059D60
+Loading driver PvScsiDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7096440
+Loading driver at 0x00007020000 EntryPoint=0x000070221D3 PvScsiDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 701FF98
+ProtectUefiImageCommon - 0x7096440
+ - 0x0000000007020000 - 0x0000000000003440
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 7023300
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 70232E0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 70232C0
+Loading driver MptScsiDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 701F7C0
+Loading driver at 0x0000701B000 EntryPoint=0x0000701D0CC MptScsiDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 701F118
+ProtectUefiImageCommon - 0x701F7C0
+ - 0x000000000701B000 - 0x0000000000003380
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 701E240
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 701E220
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 701E200
+Loading driver ConPlatformDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 701A040
+Loading driver at 0x00007016000 EntryPoint=0x000070186A8 ConPlatformDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 701F418
+ProtectUefiImageCommon - 0x701A040
+ - 0x0000000007016000 - 0x0000000000003E80
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 7019C60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7019CD0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 7019CB0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 7019C20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7019CD0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 7019CB0
+Loading driver ConSplitterDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 701A3C0
+Loading driver at 0x00007006000 EntryPoint=0x0000700AF51 ConSplitterDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 701A698
+ProtectUefiImageCommon - 0x701A3C0
+ - 0x0000000007006000 - 0x0000000000007240
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 700CF20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CEF0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 700CED0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 700CEA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CE70
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 700CE50
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 700CE20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CDF0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 700CDD0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 700CDA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CD70
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 700CD50
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 700CD20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 700CCF0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 700CCD0
+InstallProtocolInterface: gEfiSimpleTextInProtocolGuid 700CB50
+InstallProtocolInterface: gEfiSimpleTextInputExProtocolGuid 700CB80
+InstallProtocolInterface: gEfiSimplePointerProtocolGuid 700CBF0
+InstallProtocolInterface: gEfiAbsolutePointerProtocolGuid 700CC48
+InstallProtocolInterface: gEfiSimpleTextOutProtocolGuid 700CF90
+InstallProtocolInterface: gEfiSimpleTextOutProtocolGuid 700C9F0
+Loading driver GraphicsConsoleDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70970C0
+Loading driver at 0x00007000000 EntryPoint=0x00007002FB7 GraphicsConsoleDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7097C98
+ProtectUefiImageCommon - 0x70970C0
+ - 0x0000000007000000 - 0x0000000000005D80
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 7005B80
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 7005B60
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 7005B40
+Loading driver TerminalDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7015040
+Loading driver at 0x00006DF0000 EntryPoint=0x00006DF5900 TerminalDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7015D18
+ProtectUefiImageCommon - 0x7015040
+ - 0x0000000006DF0000 - 0x0000000000007B40
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DF7960
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DF7930
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DF7910
+Loading driver QemuKernelLoaderFsDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7015440
+Loading driver at 0x00006DF8000 EntryPoint=0x00006DFA086 QemuKernelLoaderFsDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7015698
+ProtectUefiImageCommon - 0x7015440
+ - 0x0000000006DF8000 - 0x0000000000003D80
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x17
+Select Item: 0x8
+Select Item: 0xB
+Error: Image at 00006DF8000 start failed: Not Found
+Loading driver DiskIoDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7015440
+Loading driver at 0x00006DEB000 EntryPoint=0x00006DEDF2B DiskIoDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7015898
+ProtectUefiImageCommon - 0x7015440
+ - 0x0000000006DEB000 - 0x0000000000004800
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DEF680
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DEF650
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DEF630
+Loading driver PartitionDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7014040
+Loading driver at 0x00006DE4000 EntryPoint=0x00006DE8ABD PartitionDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7014E98
+ProtectUefiImageCommon - 0x7014040
+ - 0x0000000006DE4000 - 0x0000000000006540
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DEA3E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DEA3C0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DEA3A0
+Loading driver EnglishDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70143C0
+Loading driver at 0x00006DFA000 EntryPoint=0x00006DFB19E EnglishDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7014698
+ProtectUefiImageCommon - 0x70143C0
+ - 0x0000000006DFA000 - 0x00000000000020C0
+InstallProtocolInterface: gEfiUnicodeCollationProtocolGuid 6DFBC20
+InstallProtocolInterface: gEfiUnicodeCollation2ProtocolGuid 6DFBBC0
+Loading driver ScsiBus
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70131C0
+Loading driver at 0x00006DDC000 EntryPoint=0x00006DDEA9E ScsiBus.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7013E98
+ProtectUefiImageCommon - 0x70131C0
+ - 0x0000000006DDC000 - 0x0000000000003F00
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DDFD60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DDFD40
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DDFD20
+Loading driver ScsiDisk
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 70135C0
+Loading driver at 0x00006DC8000 EntryPoint=0x00006DCFF9B ScsiDisk.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7013518
+ProtectUefiImageCommon - 0x70135C0
+ - 0x0000000006DC8000 - 0x0000000000009A00
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DD18A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DD1870
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DD1850
+Loading driver SataController
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7012140
+Loading driver at 0x00006DD8000 EntryPoint=0x00006DD9DF0 SataController.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 7012B18
+ProtectUefiImageCommon - 0x7012140
+ - 0x0000000006DD8000 - 0x00000000000031C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DDB060
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DDB040
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DDB020
+Loading driver AtaAtapiPassThruDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 7012540
+Loading driver at 0x00006DB2000 EntryPoint=0x00006DBA6D8 AtaAtapiPassThruDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 700F018
+ProtectUefiImageCommon - 0x7012540
+ - 0x0000000006DB2000 - 0x000000000000AFC0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DBCDC0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DBCD90
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DBCD70
+Loading driver AtaBusDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 700F140
+Loading driver at 0x00006DAB000 EntryPoint=0x00006DAF3DD AtaBusDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 700FB18
+ProtectUefiImageCommon - 0x700F140
+ - 0x0000000006DAB000 - 0x0000000000006380
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DB1180
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DB1150
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DB1130
+Loading driver NvmExpressDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 700F540
+Loading driver at 0x00006DA1000 EntryPoint=0x00006DA8362 NvmExpressDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 700EF98
+ProtectUefiImageCommon - 0x700F540
+ - 0x0000000006DA1000 - 0x0000000000009A80
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DAA8E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DAA8C0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DAA8A0
+InstallProtocolInterface: gEfiDriverSupportedEfiVersionProtocolGuid 6DAA890
+Loading driver SioBusDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 700E840
+Loading driver at 0x00006DD4000 EntryPoint=0x00006DD5DC4 SioBusDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 700E698
+ProtectUefiImageCommon - 0x700E840
+ - 0x0000000006DD4000 - 0x0000000000003180
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DD6FE0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DD6FC0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DD6FA0
+Loading driver PciSioSerialDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DFF040
+Loading driver at 0x00006D9B000 EntryPoint=0x00006D9F59B PciSioSerialDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DFFD18
+ProtectUefiImageCommon - 0x6DFF040
+ - 0x0000000006D9B000 - 0x0000000000006000
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6DA0E40
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6DA0E20
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6DA0E00
+Loading driver Ps2KeyboardDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DFF440
+Loading driver at 0x00006D95000 EntryPoint=0x00006D98B06 Ps2KeyboardDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DFFC18
+ProtectUefiImageCommon - 0x6DFF440
+ - 0x0000000006D95000 - 0x0000000000005740
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D9A5A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D9A570
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D9A550
+Loading driver BootGraphicsResourceTableDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DFE040
+Loading driver at 0x00006DC5000 EntryPoint=0x00006DC65A1 BootGraphicsResourceTableDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DFEF18
+ProtectUefiImageCommon - 0x6DFE040
+ - 0x0000000006DC5000 - 0x0000000000002880
+InstallProtocolInterface: gEfiBootLogoProtocolGuid 6DC7650
+InstallProtocolInterface: gEdkiiBootLogo2ProtocolGuid 6DC7630
+Loading driver Fat
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DFE6C0
+Loading driver at 0x00006D81000 EntryPoint=0x00006D88AD2 Fat.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DFE598
+ProtectUefiImageCommon - 0x6DFE6C0
+ - 0x0000000006D81000 - 0x0000000000009BC0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D8AA40
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D8AA10
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D8A9F0
+Loading driver UdfDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DFDCC0
+Loading driver at 0x00006D8E000 EntryPoint=0x00006D928B1 UdfDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DFDB98
+ProtectUefiImageCommon - 0x6DFDCC0
+ - 0x0000000006D8E000 - 0x00000000000060C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D93F80
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D93F50
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D93F30
+Loading driver VirtioFsDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DFD3C0
+Loading driver at 0x00006D6D000 EntryPoint=0x00006D73EA2 VirtioFsDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DFD198
+ProtectUefiImageCommon - 0x6DFD3C0
+ - 0x0000000006D6D000 - 0x0000000000009180
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D76080
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D76050
+Loading driver SnpDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DF9CC0
+Loading driver at 0x00006D79000 EntryPoint=0x00006D7E0AD SnpDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DF9718
+ProtectUefiImageCommon - 0x6DF9CC0
+ - 0x0000000006D79000 - 0x00000000000071C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D80040
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D80010
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D7FFF0
+Loading driver VlanConfigDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DF92C0
+Loading driver at 0x00006D66000 EntryPoint=0x00006D6A3EA VlanConfigDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DF8F18
+ProtectUefiImageCommon - 0x6DF92C0
+ - 0x0000000006D66000 - 0x00000000000069C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D6C7E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D6C7B0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D6C790
+Loading driver MnpDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DF81C0
+Loading driver at 0x00006D50000 EntryPoint=0x00006D574FD MnpDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DF8A18
+ProtectUefiImageCommon - 0x6DF81C0
+ - 0x0000000006D50000 - 0x000000000000A240
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D5A060
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D5A040
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D5A020
+Loading driver ArpDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DF8640
+Loading driver at 0x00006D60000 EntryPoint=0x00006D640BA ArpDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DE3018
+ProtectUefiImageCommon - 0x6DF8640
+ - 0x0000000006D60000 - 0x0000000000005D00
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D65BA0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D65B70
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D65B50
+Loading driver Dhcp4Dxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DE30C0
+Loading driver at 0x00006D3A000 EntryPoint=0x00006D416C4 Dhcp4Dxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DE3918
+ProtectUefiImageCommon - 0x6DE30C0
+ - 0x0000000006D3A000 - 0x000000000000A4C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D442A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D44270
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D44250
+Loading driver Ip4Dxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DE3540
+Loading driver at 0x00006D12000 EntryPoint=0x00006D14662 Ip4Dxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DE2E98
+ProtectUefiImageCommon - 0x6DE3540
+ - 0x0000000006D12000 - 0x00000000000131C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D24E60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D24E40
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D24E20
+Loading driver Udp4Dxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DE2140
+Loading driver at 0x00006D31000 EntryPoint=0x00006D37560 Udp4Dxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DE2718
+ProtectUefiImageCommon - 0x6DE2140
+ - 0x0000000006D31000 - 0x0000000000008840
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D396A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D39680
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D39660
+Loading driver Mtftp4Dxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DE1B40
+Loading driver at 0x00006D28000 EntryPoint=0x00006D2EE5A Mtftp4Dxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DE1098
+ProtectUefiImageCommon - 0x6DE1B40
+ - 0x0000000006D28000 - 0x0000000000009000
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D30E60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D30E40
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D30E20
+Loading driver TcpDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DE1240
+Loading driver at 0x00006CEE000 EntryPoint=0x00006CF0E3A TcpDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DE1818
+ProtectUefiImageCommon - 0x6DE1240
+ - 0x0000000006CEE000 - 0x0000000000011E40
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CFF9A0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CFFA50
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CFFA30
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CFF960
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CFFA50
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CFFA30
+Loading driver UefiPxeBcDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DE07C0
+Loading driver at 0x00006CDC000 EntryPoint=0x00006CE2735 UefiPxeBcDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DE0698
+ProtectUefiImageCommon - 0x6DE07C0
+ - 0x0000000006CDC000 - 0x0000000000011340
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x19
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CECE60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CECF00
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CECEE0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CECE20
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CECF00
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CECEE0
+Loading driver IScsiDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DD3CC0
+Loading driver at 0x00006CA0000 EntryPoint=0x00006CA7191 IScsiDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DD3098
+ProtectUefiImageCommon - 0x6DD3CC0
+ - 0x0000000006CA0000 - 0x000000000001D580
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CBD060
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CBD0C0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CBD0A0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CBD020
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CBD0C0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CBD0A0
+InstallProtocolInterface: gEfiIScsiInitiatorNameProtocolGuid 6CBD010
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6CBD120
+InstallProtocolInterface: gEfiHiiConfigAccessProtocolGuid 6DD3828
+InstallProtocolInterface: gEfiAuthenticationInfoProtocolGuid 6CBCFF0
+Loading driver VirtioNetDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DD2240
+Loading driver at 0x00006D0C000 EntryPoint=0x00006D0FB7C VirtioNetDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DD2498
+ProtectUefiImageCommon - 0x6DD2240
+ - 0x0000000006D0C000 - 0x0000000000005440
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D11300
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D112D0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D112B0
+Loading driver UhciDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DC4CC0
+Loading driver at 0x00006D05000 EntryPoint=0x00006D0A1EE UhciDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DC4B18
+ProtectUefiImageCommon - 0x6DC4CC0
+ - 0x0000000006D05000 - 0x0000000000006E00
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6D0BC60
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6D0BC40
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6D0BC20
+Loading driver EhciDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DC46C0
+Loading driver at 0x00006CD3000 EntryPoint=0x00006CD933A EhciDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DC4A18
+ProtectUefiImageCommon - 0x6DC46C0
+ - 0x0000000006CD3000 - 0x00000000000087C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CDB620
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CDB600
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CDB5E0
+Loading driver XhciDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DC12C0
+Loading driver at 0x00006C93000 EntryPoint=0x00006C9C906 XhciDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DC1A98
+ProtectUefiImageCommon - 0x6DC12C0
+ - 0x0000000006C93000 - 0x000000000000CB80
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6C9F9E0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6C9F9C0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6C9F9A0
+Loading driver UsbBusDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DC1540
+Loading driver at 0x00006CC9000 EntryPoint=0x00006CCF6D6 UsbBusDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DC1898
+ProtectUefiImageCommon - 0x6DC1540
+ - 0x0000000006CC9000 - 0x00000000000092C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CD2100
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CD20D0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CD20B0
+Loading driver UsbKbDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DC02C0
+Loading driver at 0x00006CC2000 EntryPoint=0x00006CC6112 UsbKbDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DC0A18
+ProtectUefiImageCommon - 0x6DC02C0
+ - 0x0000000006CC2000 - 0x0000000000006340
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6CC8160
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6CC8130
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6CC8110
+Loading driver UsbMassStorageDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DC0540
+Loading driver at 0x00006C8D000 EntryPoint=0x00006C90C76 UsbMassStorageDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DBDD18
+ProtectUefiImageCommon - 0x6DC0540
+ - 0x0000000006C8D000 - 0x0000000000005980
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6C92820
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6C927F0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6C927D0
+Loading driver QemuVideoDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6DBD2C0
+Loading driver at 0x00006C86000 EntryPoint=0x00006C89B36 QemuVideoDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6DBDC98
+ProtectUefiImageCommon - 0x6DBD2C0
+ - 0x0000000006C86000 - 0x0000000000006040
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6C8BEE0
+InstallProtocolInterface: 107A772C-D5E1-11D4-9A46-0090273FC14D 6C8BEC0
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6C8BEA0
+Loading driver VirtioGpuDxe
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 6D8D040
+Loading driver at 0x00006C80000 EntryPoint=0x00006C83C3C VirtioGpuDxe.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6D8DB98
+ProtectUefiImageCommon - 0x6D8D040
+ - 0x0000000006C80000 - 0x00000000000057C0
+InstallProtocolInterface: gEfiDriverBindingProtocolGuid 6C85660
+InstallProtocolInterface: gEfiComponentName2ProtocolGuid 6C85640
+[Bds] Entry...
+[BdsDxe] Locate Variable Lock protocol - Success
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: gEfiGlobalVariableGuid PlatformLangCodes
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: gEfiGlobalVariableGuid LangCodes
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: gEfiGlobalVariableGuid BootOptionSupport
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: gEfiGlobalVariableGuid HwErrRecSupport
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: gEfiGlobalVariableGuid OsIndicationsSupported
+Variable Driver Auto Update Lang, Lang:eng, PlatformLang:en Status: Success
+!!! DEPRECATED INTERFACE !!! VariableLockRequestToLock() will go away soon!
+!!! DEPRECATED INTERFACE !!! Please move to use Variable Policy!
+!!! DEPRECATED INTERFACE !!! Variable: gEfiGlobalVariableGuid PlatformRecovery0000
+PlatformBootManagerBeforeConsole
+Registered NotifyDevPath Event
+PCI Bus First Scanning
+PciBus: Discovered PCI @ [00|00|00]
+
+PciBus: Discovered PCI @ [00|01|00]
+
+PciBus: Discovered PCI @ [00|01|01]
+ BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
+
+PciBus: Discovered PCI @ [00|01|03]
+
+PciBus: Discovered PCI @ [00|02|00]
+ BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
+ BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
+
+PCI Bus Second Scanning
+PciBus: Discovered PCI @ [00|00|00]
+
+PciBus: Discovered PCI @ [00|01|00]
+
+PciBus: Discovered PCI @ [00|01|01]
+ BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
+
+PciBus: Discovered PCI @ [00|01|03]
+
+PciBus: Discovered PCI @ [00|02|00]
+ BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
+ BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
+
+PciBus: Discovered PCI @ [00|00|00]
+
+PciBus: Discovered PCI @ [00|01|00]
+
+PciBus: Discovered PCI @ [00|01|01]
+ BAR[4]: Type = Io32; Alignment = 0xF; Length = 0x10; Offset = 0x20
+
+PciBus: Discovered PCI @ [00|01|03]
+
+PciBus: Discovered PCI @ [00|02|00]
+ BAR[0]: Type = PMem32; Alignment = 0xFFFFFF; Length = 0x1000000; Offset = 0x10
+ BAR[2]: Type = Mem32; Alignment = 0xFFF; Length = 0x1000; Offset = 0x18
+
+PciHostBridge: SubmitResources for PciRoot(0x0)
+ I/O: Granularity/SpecificFlag = 0 / 01
+ Length/Alignment = 0x1000 / 0xFFF
+ Mem: Granularity/SpecificFlag = 32 / 00
+ Length/Alignment = 0x1100000 / 0xFFFFFF
+PciBus: HostBridge->SubmitResources() - Success
+PciHostBridge: NotifyPhase (AllocateResources)
+ RootBridge: PciRoot(0x0)
+ Mem: Base/Length/Alignment = 80000000/1100000/FFFFFF - Success
+ I/O: Base/Length/Alignment = C000/1000/FFF - Success
+PciBus: HostBridge->NotifyPhase(AllocateResources) - Success
+Process Option ROM: BAR Base/Length = 81000000/10000
+PciBus: Resource Map for Root Bridge PciRoot(0x0)
+Type = Io16; Base = 0xC000; Length = 0x1000; Alignment = 0xFFF
+ Base = 0xC000; Length = 0x10; Alignment = 0xF; Owner = PCI [00|01|01:20]
+Type = Mem32; Base = 0x80000000; Length = 0x1100000; Alignment = 0xFFFFFF
+ Base = 0x80000000; Length = 0x1000000; Alignment = 0xFFFFFF; Owner = PCI [00|02|00:10]; Type = PMem32
+ Base = 0x81000000; Length = 0x10000; Alignment = 0xFFFF; Owner = PCI [00|00|00:00]; Type = OpRom
+ Base = 0x81010000; Length = 0x1000; Alignment = 0xFFF; Owner = PCI [00|02|00:18]
+
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D8C818
+InstallProtocolInterface: gEfiPciIoProtocolGuid 6D8C428
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D8CE18
+InstallProtocolInterface: gEfiPciIoProtocolGuid 6D8C8A8
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D8BE98
+InstallProtocolInterface: gEfiPciIoProtocolGuid 6D8B028
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D8BF18
+InstallProtocolInterface: gEfiPciIoProtocolGuid 6D8B428
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D8BF98
+InstallProtocolInterface: gEfiPciIoProtocolGuid 6D8B828
+InstallProtocolInterface: gEfiPciEnumerationCompleteProtocolGuid 0
+OnRootBridgesConnected: root bridges have been connected, installing ACPI tables
+Select Item: 0x19
+Select Item: 0x29
+Select Item: 0x19
+Select Item: 0x28
+Select Item: 0x19
+Select Item: 0x22
+Select Item: 0x19
+Select Item: 0x23
+InstallQemuFwCfgTables: installed 5 tables
+PcRtc: Write 0x20 to CMOS location 0x32
+AcpiS3ContextSave!
+AcpiS3Context: AcpiFacsTable is 0x 7BDD000
+AcpiS3Context: IdtrProfile is 0x 7B6C000
+AcpiS3Context: S3NvsPageTableAddress is 0x 0
+AcpiS3Context: S3DebugBufferAddress is 0x 7B62000
+AcpiS3Context: BootScriptStackBase is 0x 7B63000
+AcpiS3Context: BootScriptStackSize is 0x 8000
+[Variable]END_OF_DXE is signaled
+Initialize variable error flag (FF)
+Select Item: 0x19
+Select Item: 0x28
+InstallProtocolInterface: gEfiDxeSmmReadyToLockProtocolGuid 0
+InstallProtocolInterface: BootScriptExecutorDxe 0
+Select Item: 0x0
+FW CFG Signature: 0x554D4551
+Select Item: 0x1
+FW CFG Revision: 0x3
+QemuFwCfg interface (DMA) is supported.
+Select Item: 0x19
+Select Item: 0x28
+Found LPC Bridge device
+BdsPlatform.c+618: COM1 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x0)/Uart(115200,8,N,1)/VenMsg(gEfiPcAnsiGuid)
+BdsPlatform.c+650: COM2 DevPath: PciRoot(0x0)/Pci(0x1,0x0)/Serial(0x1)/Uart(115200,8,N,1)/VenMsg(gEfiPcAnsiGuid)
+Found PCI display device
+QemuVideo: QEMU Standard VGA detected
+QemuVideo: Using mmio bar @ 0x81010000
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D77A98
+QemuVideoBochsModeSetup: AvailableFbSize=0x1000000
+Adding Mode 0 as Bochs Internal Mode 0: 640x480, 32-bit
+Adding Mode 1 as Bochs Internal Mode 1: 800x480, 32-bit
+Adding Mode 2 as Bochs Internal Mode 2: 800x600, 32-bit
+Adding Mode 3 as Bochs Internal Mode 3: 832x624, 32-bit
+Adding Mode 4 as Bochs Internal Mode 4: 960x640, 32-bit
+Adding Mode 5 as Bochs Internal Mode 5: 1024x600, 32-bit
+Adding Mode 6 as Bochs Internal Mode 6: 1024x768, 32-bit
+Adding Mode 7 as Bochs Internal Mode 7: 1152x864, 32-bit
+Adding Mode 8 as Bochs Internal Mode 8: 1152x870, 32-bit
+Adding Mode 9 as Bochs Internal Mode 9: 1280x720, 32-bit
+Adding Mode 10 as Bochs Internal Mode 10: 1280x760, 32-bit
+Adding Mode 11 as Bochs Internal Mode 11: 1280x768, 32-bit
+Adding Mode 12 as Bochs Internal Mode 12: 1280x800, 32-bit
+Adding Mode 13 as Bochs Internal Mode 13: 1280x960, 32-bit
+Adding Mode 14 as Bochs Internal Mode 14: 1280x1024, 32-bit
+Adding Mode 15 as Bochs Internal Mode 15: 1360x768, 32-bit
+Adding Mode 16 as Bochs Internal Mode 16: 1366x768, 32-bit
+Adding Mode 17 as Bochs Internal Mode 17: 1400x1050, 32-bit
+Adding Mode 18 as Bochs Internal Mode 18: 1440x900, 32-bit
+Adding Mode 19 as Bochs Internal Mode 19: 1600x900, 32-bit
+Adding Mode 20 as Bochs Internal Mode 20: 1600x1200, 32-bit
+Adding Mode 21 as Bochs Internal Mode 21: 1680x1050, 32-bit
+Adding Mode 22 as Bochs Internal Mode 22: 1920x1080, 32-bit
+Adding Mode 23 as Bochs Internal Mode 23: 1920x1200, 32-bit
+Adding Mode 24 as Bochs Internal Mode 24: 1920x1440, 32-bit
+Adding Mode 25 as Bochs Internal Mode 25: 2000x2000, 32-bit
+Adding Mode 26 as Bochs Internal Mode 26: 2048x1536, 32-bit
+Adding Mode 27 as Bochs Internal Mode 27: 2048x2048, 32-bit
+Adding Mode 28 as Bochs Internal Mode 28: 2560x1440, 32-bit
+Adding Mode 29 as Bochs Internal Mode 29: 2560x1600, 32-bit
+InitializeBochsGraphicsMode: 640x480 @ 32
+PixelBlueGreenRedReserved8BitPerColor
+FrameBufferBase: 0x80000000, FrameBufferSize: 0x12C000
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+InstallProtocolInterface: gEfiGraphicsOutputProtocolGuid 75B81B8
+InstallVbeShim: VBE shim installed
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+Select Item: 0xE
+[Bds]RegisterKeyNotify: 000C/0000 80000000/00 Success
+[Bds]RegisterKeyNotify: 0017/0000 80000000/00 Success
+[Bds]RegisterKeyNotify: 0000/000D 80000000/00 Success
+InstallProtocolInterface: SioBusDxe 6D27518
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 709FA18
+InstallProtocolInterface: gEfiSioProtocolGuid 709F938
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 709F818
+InstallProtocolInterface: gEfiSioProtocolGuid 709F738
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D26B98
+InstallProtocolInterface: gEfiSioProtocolGuid 6D26E38
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D27398
+InstallProtocolInterface: gEfiSerialIoProtocolGuid 6D263A8
+PciSioSerial: Create SIO child serial device - Success
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+Terminal - Mode 0, Column = 80, Row = 25
+Terminal - Mode 1, Column = 80, Row = 50
+Terminal - Mode 2, Column = 100, Row = 31
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+InstallProtocolInterface: gEfiSimpleTextInProtocolGuid 6D04340
+InstallProtocolInterface: gEfiSimpleTextInputExProtocolGuid 6D04428
+InstallProtocolInterface: gEfiSimpleTextOutProtocolGuid 6D04358
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6D04918
+InstallProtocolInterface: gEfiConsoleInDeviceGuid 0
+InstallProtocolInterface: gEfiConsoleOutDeviceGuid 0
+InstallProtocolInterface: gEfiStandardErrorDeviceGuid 0
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+InitializeBochsGraphicsMode: 800x600 @ 32
+PixelBlueGreenRedReserved8BitPerColor
+FrameBufferBase: 0x80000000, FrameBufferSize: 0x1D5000
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+0: shl:0 shr:0 mask:FF0000
+1: shl:0 shr:0 mask:FF00
+2: shl:0 shr:0 mask:FF
+Bytes per pixel: 4
+GraphicsConsole video resolution 800 x 600
+Graphics - Mode 0, Column = 80, Row = 25
+Graphics - Mode 1, Column = 0, Row = 0
+Graphics - Mode 2, Column = 100, Row = 31
+Graphics Console Started, Mode: 0
+InstallProtocolInterface: gEfiSimpleTextOutProtocolGuid 6D029B0
+InstallProtocolInterface: gEfiConsoleOutDeviceGuid 0
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+PixelBlueGreenRedReserved8BitPerColor
+InstallProtocolInterface: gEfiGraphicsOutputProtocolGuid 700D020
+InstallProtocolInterface: gEfiSimpleTextInProtocolGuid 6C5A028
+InstallProtocolInterface: gEfiSimpleTextInputExProtocolGuid 6C5A040
+InstallProtocolInterface: gEfiConsoleInDeviceGuid 0
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+PlatformBootManagerAfterConsole
+PlatformBdsPolicyBehavior: not restoring NvVars from disk since flash variables appear to be supported.
+Boot Mode:0
+PlatformBdsConnectSequence
+Select Item: 0x19
+EfiBootManagerConnectAll
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+SataControllerStart START
+InstallProtocolInterface: gEfiIdeControllerInitProtocolGuid 6C59AA0
+SataControllerStart END status = Success
+==AtaAtapiPassThru Start== Controller = 6D8BC18
+[primary ] channel [master] [harddisk] device
+Enabled S.M.A.R.T feature at [primary] channel [master] device!
+CalculateBestPioMode: AdvancedPioMode = 3
+IdeInitCalculateMode: PioMode = 4
+CalculateBestUdmaMode: DeviceUDmaMode = 203F
+IdeInitCalculateMode: UdmaMode = 5
+[secondary] channel [master] [cdrom ] device
+CalculateBestPioMode: AdvancedPioMode = 3
+IdeInitCalculateMode: PioMode = 3
+CalculateBestUdmaMode: DeviceUDmaMode = 203F
+IdeInitCalculateMode: UdmaMode = 5
+InstallProtocolInterface: gEfiAtaPassThruProtocolGuid 6C58040
+InstallProtocolInterface: gEfiExtScsiPassThruProtocolGuid 6C58090
+InstallProtocolInterface: AtaBusDxe 6C57898
+AtaBus - Identify Device: Port 0 PortMultiplierPort 0
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6C57498
+InstallProtocolInterface: gEfiBlockIoProtocolGuid 6C56028
+InstallProtocolInterface: gEfiBlockIo2ProtocolGuid 6C56058
+InstallProtocolInterface: gEfiDiskInfoProtocolGuid 6C560B0
+Found TCG support in Port 0 PortMultiplierPort 0
+InstallProtocolInterface: gEfiStorageSecurityCommandProtocolGuid 6C560E8
+Successfully Install Storage Security Protocol on the ATA device
+InstallProtocolInterface: ScsiBus 6C56820
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6C56418
+InstallProtocolInterface: gEfiScsiIoProtocolGuid 6C564A8
+InstallProtocolInterface: gEfiBlockIoProtocolGuid 6C53338
+InstallProtocolInterface: gEfiBlockIo2ProtocolGuid 6C53368
+InstallProtocolInterface: gEfiDiskInfoProtocolGuid 6C53460
+InstallProtocolInterface: gEfiDiskIoProtocolGuid 6C53C20
+InstallProtocolInterface: gEfiDiskIo2ProtocolGuid 6C53C38
+ BlockSize : 2048
+ LastBlock : 0
+FatOpenDevice: read of part_lba failed No Media
+InstallProtocolInterface: gEfiDiskIoProtocolGuid 6C528A0
+InstallProtocolInterface: gEfiDiskIo2ProtocolGuid 6C528B8
+ BlockSize : 512
+ LastBlock : FBFFF
+InstallProtocolInterface: gEfiDevicePathProtocolGuid 6C52718
+InstallProtocolInterface: gEfiBlockIoProtocolGuid 6C51D30
+InstallProtocolInterface: gEfiBlockIo2ProtocolGuid 6C51D60
+InstallProtocolInterface: gEfiPartitionInfoProtocolGuid 6C51DE8
+InstallProtocolInterface: gEfiDiskIoProtocolGuid 6C51A20
+InstallProtocolInterface: gEfiDiskIo2ProtocolGuid 6C51A38
+ BlockSize : 512
+ LastBlock : FBFC0
+InstallProtocolInterface: gEfiSimpleFileSystemProtocolGuid 6C50030
+Installed Fat filesystem on 6C52418
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+SataControllerStart START
+SataControllerStart error return status = Already started
+ BlockSize : 2048
+ LastBlock : 0
+FatOpenDevice: read of part_lba failed No Media
+ BlockSize : 512
+ LastBlock : FBFFF
+ClockRate = 1843200
+Divisor = 1
+BaudRate/Actual (115200/115200) = 100%
+PciSioSerial: Create SIO child serial device - Device Error
+Select Item: 0x19
+[Bds]OsIndication: 0000000000000000
+[Bds]=============Begin Load Options Dumping ...=============
+ Driver Options:
+ SysPrep Options:
+ Boot Options:
+ Boot0000: UiApp 0x0109
+ Boot0001: UEFI QEMU DVD-ROM QM00003 0x0001
+ Boot0002: UEFI QEMU HARDDISK QM00001 0x0001
+ Boot0003: EFI Internal Shell 0x0001
+ PlatformRecovery Options:
+ PlatformRecovery0000: Default PlatformRecovery 0x0001
+[Bds]=============End Load Options Dumping=============
+[Bds]BdsWait ...Zzzzzzzzzzzz...
+[Bds]Exit the waiting!
+[Bds]Stop Hotkey Service!
+[Bds]UnregisterKeyNotify: 000C/0000 Success
+[Bds]UnregisterKeyNotify: 0017/0000 Success
+[Bds]UnregisterKeyNotify: 0000/000D Success
+Memory Previous Current Next
+ Type Pages Pages Pages
+====== ======== ======== ========
+ 0A 00000080 00000022 00000080
+ 09 00000010 00000008 00000010
+ 00 00000080 00000022 00000080
+ 05 00000100 0000003C 00000100
+ 06 00000100 000000B1 00000100
+[Bds]Booting UEFI QEMU DVD-ROM QM00003
+FatOpenDevice: read of part_lba failed No Media
+ BlockSize : 2048
+ LastBlock : 0
+FatOpenDevice: read of part_lba failed No Media
+[Bds] Expand PciRoot(0x0)/Pci(0x1,0x1)/Ata(Secondary,Master,0x0) -> <null string>
+Memory Previous Current Next
+ Type Pages Pages Pages
+====== ======== ======== ========
+ 0A 00000080 00000022 00000080
+ 09 00000010 00000008 00000010
+ 00 00000080 00000022 00000080
+ 05 00000100 0000003C 00000100
+ 06 00000100 000000B1 00000100
+[Bds]Booting UEFI QEMU HARDDISK QM00001
+ BlockSize : 512
+ LastBlock : FBFFF
+ BlockSize : 512
+ LastBlock : FBFFF
+[Bds] Expand PciRoot(0x0)/Pci(0x1,0x1)/Ata(Primary,Master,0x0) -> <null string>
+Memory Previous Current Next
+ Type Pages Pages Pages
+====== ======== ======== ========
+ 0A 00000080 00000022 00000080
+ 09 00000010 00000008 00000010
+ 00 00000080 00000022 00000080
+ 05 00000100 0000003C 00000100
+ 06 00000100 000000B1 00000100
+[Bds]Booting EFI Internal Shell
+[Bds] Expand Fv(7CB8BDC9-F8EB-4F34-AAEA-3EE4AF6516A1)/FvFile(Shell) -> Fv(7CB8BDC9-F8EB-4F34-AAEA-3EE4AF6516A1)/FvFile(Shell)
+InstallProtocolInterface: gEfiLoadedImageProtocolGuid 66A66C0
+Loading driver at 0x000064E4000 EntryPoint=0x0000652AC78 Shell.efi
+InstallProtocolInterface: gEfiLoadedImageDevicePathProtocolGuid 6D77798
+ProtectUefiImageCommon - 0x66A66C0
+ - 0x00000000064E4000 - 0x00000000000E0A80
+InstallProtocolInterface: gEfiSimpleTextOutProtocolGuid 66A32A0
+InstallProtocolInterface: gEfiShellParametersProtocolGuid 66A2018
+InstallProtocolInterface: gEfiShellProtocolGuid 65C01E0