summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBAKit/src
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ZBAKit/src')
-rw-r--r--dev/ZBAKit/src/BootThread.cc6
-rw-r--r--dev/ZBAKit/src/HEL/AMD64/BootMain.cc4
2 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZBAKit/src/BootThread.cc b/dev/ZBAKit/src/BootThread.cc
index 6ce14877..3f74c376 100644
--- a/dev/ZBAKit/src/BootThread.cc
+++ b/dev/ZBAKit/src/BootThread.cc
@@ -22,7 +22,7 @@ EXTERN EfiBootServices* BS;
namespace Boot
{
- EXTERN_C Void rt_jump_to_address(VoidPtr code, HEL::HANDOVER_INFO_HEADER* handover, UInt8* stack);
+ EXTERN_C Void rt_jump_to_address(VoidPtr code, HEL::BootInfoHeader* handover, UInt8* stack);
BThread::BThread(VoidPtr blob)
: fBlob(blob), fStartAddress(nullptr)
@@ -167,9 +167,9 @@ namespace Boot
}
/// @note handover header has to be valid!
- Void BThread::Start(HEL::HANDOVER_INFO_HEADER* handover, Bool own_stack)
+ Void BThread::Start(HEL::BootInfoHeader* handover, Bool own_stack)
{
- HEL::HandoverProc err_fn = [](HEL::HANDOVER_INFO_HEADER* rcx) -> void {
+ HEL::HandoverProc err_fn = [](HEL::BootInfoHeader* rcx) -> void {
CGDrawString("ZBA: INVALID IMAGE! ABORTING...", 50, 10, RGB(0xFF, 0xFF, 0xFF));
::EFI::Stop();
};
diff --git a/dev/ZBAKit/src/HEL/AMD64/BootMain.cc b/dev/ZBAKit/src/HEL/AMD64/BootMain.cc
index 404d8e3b..9d3da690 100644
--- a/dev/ZBAKit/src/HEL/AMD64/BootMain.cc
+++ b/dev/ZBAKit/src/HEL/AMD64/BootMain.cc
@@ -86,8 +86,8 @@ EFI_EXTERN_C EFI_API Int32 Main(EfiHandlePtr ImageHandle,
{
InitEFI(SystemTable); ///! Init the EFI library.
- HEL::HANDOVER_INFO_HEADER* handover_hdr =
- new HEL::HANDOVER_INFO_HEADER();
+ HEL::BootInfoHeader* handover_hdr =
+ new HEL::BootInfoHeader();
UInt32 map_key = 0;
UInt32 size_struct_ptr = sizeof(EfiMemoryDescriptor);