blob: c8a01050fbccd6d0dd67b4c8e1a8f5593cebccdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* ========================================================
*
* NetBoot
* Copyright EL Mahrouss Logic., all rights reserved.
*
* ========================================================
*/
#include <BootKit/BootKit.h>
EXTERN_C Int32 ModuleMain(Kernel::HEL::HANDOVER_INFO_HEADER* Handover)
{
EfiSystemTable* system_table = (EfiSystemTable*)Handover->f_FirmwareCustomTables[1];
system_table->ConOut->ClearScreen(system_table->ConOut);
system_table->ConOut->OutputString(system_table->ConOut, L"SYSCHK: CHECKING FOR VALID NEFS OR HPFS PARTITIONS...\r\n");
system_table->ConOut->OutputString(system_table->ConOut, L"SYSCHK: GOOD TO GO!\r\n");
return kEfiOk;
}
|