diff options
| author | amlal <amlal@el-mahrouss-logic.com> | 2024-03-24 23:07:58 +0100 |
|---|---|---|
| committer | amlal <amlal@el-mahrouss-logic.com> | 2024-03-24 23:07:58 +0100 |
| commit | ab18ee1fd5fced5d6c75840f35455b609ed28223 (patch) | |
| tree | 286bae618afe3e2db8fdd415a63b27a7862610e4 /Private/NewBoot/NetBoot | |
| parent | c1c1c7cb8ec2518b746804ecc2be9e0613fe685f (diff) | |
Revision of Handover: Remove bootloader field.
Signed-off-by: amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/NewBoot/NetBoot')
| -rw-r--r-- | Private/NewBoot/NetBoot/EfiModule.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Private/NewBoot/NetBoot/EfiModule.cxx b/Private/NewBoot/NetBoot/EfiModule.cxx index 419a2be4..e5df4a3e 100644 --- a/Private/NewBoot/NetBoot/EfiModule.cxx +++ b/Private/NewBoot/NetBoot/EfiModule.cxx @@ -8,14 +8,19 @@ */ #include <FirmwareKit/EFI.hxx> +#include <BootKit/BootKit.hxx> EXTERN_C Int32 EfiMain(EfiHandlePtr handle, EfiSystemTable* SystemTable) { InitEFI(ST); + InitGOP(); - /// - Find a network drive called ".\\HCoreWorkgroup" + /// - Find a network drive called "/OnlineInstall" /// - Download our image /// - Boot from it. + BTextWriter writer; + writer.Write(L"NetBoot.exe: Updating from OTP...\r\n"); + return kEfiOk; } |
