diff --git a/sdk/xtdk/xtfw.h b/sdk/xtdk/xtfw.h index 925d429..1a4642a 100644 --- a/sdk/xtdk/xtfw.h +++ b/sdk/xtdk/xtfw.h @@ -89,7 +89,6 @@ typedef struct _FIRMWARE_INFORMATION_BLOCK typedef struct _LOADER_INFORMATION_BLOCK { PVOID DbgPrint; - ULONG PageMapLevel; } LOADER_INFORMATION_BLOCK, *PLOADER_INFORMATION_BLOCK; /* Boot Loader memory mapping information */ diff --git a/xtldr/modules/xtos_o/xtos.c b/xtldr/modules/xtos_o/xtos.c index 65e0129..f8844c1 100644 --- a/xtldr/modules/xtos_o/xtos.c +++ b/xtldr/modules/xtos_o/xtos.c @@ -571,9 +571,6 @@ XtpInitializeLoaderBlock(IN PXTBL_PAGE_MAPPING PageMap, /* Set LoaderInformation block properties */ LoaderBlock->LoaderInformation.DbgPrint = XtLdrProtocol->Debug.Print; - /* Store page map level */ - LoaderBlock->LoaderInformation.PageMapLevel = PageMap->PageMapLevel; - /* Attempt to find virtual address of the EFI Runtime Services */ // Status = XtLdrProtocol->GetVirtualAddress(MemoryMappings, &EfiSystemTable->RuntimeServices->Hdr, &RuntimeServices); // if(Status == STATUS_EFI_SUCCESS)