Actually pass data pages to kernel

This commit is contained in:
Justin C. Miller
2018-03-27 14:50:28 -07:00
parent fd32af4905
commit cc01f9d260

View File

@@ -121,6 +121,6 @@ efi_main(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable)
status = ST->BootServices->ExitBootServices(ImageHandle, map.key);
CHECK_EFI_STATUS_OR_ASSERT(status, 0);
kernel_main();
kernel_main(data_header);
return EFI_LOAD_ERROR;
}