Compare commits

..

No commits in common. "a06a298f8f5a371174b0b972dccfb6119a24fd5b" and "1bbcacb90eadde2bf2114efe25ed93d7920bbef6" have entirely different histories.

View File

@ -45,9 +45,12 @@ EFI_STATUS LoadKernel(EFI_HANDLE ImageHandle, GFX_INFO* Graphics, EFI_CONFIGURAT
}
Print(L"Syncboot loaded at 0x%llx\n", LoadedImage->ImageBase);
Print(L"BootServices start at 0x%llx, ExitBootServices at %llx.\r\n", BS, BS->ExitBootServices);
AwaitKey("\0");
int Loop = 1;
while (Loop) {
__asm volatile("pause");
}
/* Get the path to the device */
CHAR16* ESPRootTemp = DevicePathToStr(DevicePathFromHandle(LoadedImage->DeviceHandle));
@ -1457,7 +1460,7 @@ EFI_STATUS LoadKernel(EFI_HANDLE ImageHandle, GFX_INFO* Graphics, EFI_CONFIGURAT
FILELOADER_PARAMS* LoaderBlock;
KernelStatus = BS->AllocatePool(EfiLoaderData, sizeof(FILELOADER_PARAMS), (void**)&LoaderBlock);
KernelStatus = BS->AllocatePool(EfiLoaderData, sizeof(FILELOADER_PARAMS), (void**)LoaderBlock);
if (EFI_ERROR(KernelStatus)) {
Print(L"Error allocating loaderblock pool. Code 0x%llx\r\n", KernelStatus);
return KernelStatus;
@ -1522,7 +1525,7 @@ EFI_STATUS LoadKernel(EFI_HANDLE ImageHandle, GFX_INFO* Graphics, EFI_CONFIGURAT
}
}
// AwaitKey(L"Done! Next step is jumping to kernel.\r\n");
AwaitKey(L"Done! Next step is jumping to kernel.\r\n");
// Call the kernel!
LoaderBlock->UEFI_Version = UEFIVer;