Compare commits
No commits in common. "437b19a0f5e03a7f355903490be07c92e15ed38c" and "2751b0f7bbcf2c7b31a7c0e8db73172fc5a1a5b8" have entirely different histories.
437b19a0f5
...
2751b0f7bb
@ -95,7 +95,7 @@ Return Value:
|
|||||||
PapMinimumAllocationCount = MinimumAllocation;
|
PapMinimumAllocationCount = MinimumAllocation;
|
||||||
PapMinimumPhysicalPage = 1;
|
PapMinimumPhysicalPage = 1;
|
||||||
PapMaximumPhysicalPage = MAXULONGLONG >> PAGE_SHIFT;
|
PapMaximumPhysicalPage = MAXULONGLONG >> PAGE_SHIFT;
|
||||||
DebugPrintf(L"Maximum physical page: %x %x\r\n", HIDWORD(PapMaximumPhysicalPage), LODWORD(PapMaximumPhysicalPage));
|
DebugPrintf(L"Maximum physical page: %x %x\r\n", (ULONG)(PapMaximumPhysicalPage >> 32), (ULONG)(PapMaximumPhysicalPage));
|
||||||
|
|
||||||
//
|
//
|
||||||
// Initialize MDLs.
|
// Initialize MDLs.
|
||||||
|
@ -82,10 +82,8 @@ Return Value:
|
|||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
ConsolePrint(L"-------- Alcyone EFI Boot Manager --------\r\n");
|
ConsolePrintf(L"Image base: %x %x\r\n", (ULONG)((ULONG_PTR)InputParameters->ImageBase >> 32), (ULONG)((ULONG_PTR)InputParameters->ImageBase));
|
||||||
ConsolePrintf(L"Image base: %x %x\r\nImage size: %x\r\n", HIDWORD((ULONG_PTR)InputParameters->ImageBase), LODWORD((ULONG_PTR)InputParameters->ImageBase), InputParameters->ImageSize);
|
ConsolePrintf(L"Image size: %x\r\n", InputParameters->ImageSize);
|
||||||
|
|
||||||
DebugPrint(L"Initializing boot library...\r\n");
|
|
||||||
|
|
||||||
if (ApplicationEntry->Signature != BOOT_INPUT_APPLICATION_ENTRY_SIGNATURE) {
|
if (ApplicationEntry->Signature != BOOT_INPUT_APPLICATION_ENTRY_SIGNATURE) {
|
||||||
DebugPrint(L"InitializeLibrary(): ApplicationEntry Signature is invalid\r\n");
|
DebugPrint(L"InitializeLibrary(): ApplicationEntry Signature is invalid\r\n");
|
||||||
|
@ -117,15 +117,6 @@ typedef ULONGLONG *PULONGLONG;
|
|||||||
#define MAXLONGLONG 0x7fffffffffffffff
|
#define MAXLONGLONG 0x7fffffffffffffff
|
||||||
#define MAXULONGLONG 0xffffffffffffffff
|
#define MAXULONGLONG 0xffffffffffffffff
|
||||||
|
|
||||||
#define LODWORD(x) ((ULONG)(x))
|
|
||||||
#define HIDWORD(x) ((ULONG)((x) >> 32))
|
|
||||||
|
|
||||||
#define LOWORD(x) ((USHORT)(x))
|
|
||||||
#define HIWORD(x) ((USHORT)((x) >> 16))
|
|
||||||
|
|
||||||
#define LOBYTE(x) ((UCHAR)(x))
|
|
||||||
#define HIBYTE(x) ((UCHAR)((x) >> 8))
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Logical/boolean value types.
|
// Logical/boolean value types.
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user