blob: 0fe6bc9aeaad287097901cb15de29c6f1564b244 (
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 ZKA Technologies., all rights reserved.
*
* ========================================================
*/
#include <BootKit/BootKit.hxx>
EXTERN_C Int32 ModuleMain(Kernel::HEL::HANDOVER_INFO_HEADER* Handover)
{
EfiSystemTable* cST = (EfiSystemTable*)Handover->f_FirmwareCustomTables[1];
cST->ConOut->ClearScreen(cST->ConOut);
cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: CHECKING FOR VALID NEWFS OR HPFS PARTITIONS...\r\n");
cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: GOOD TO GO!\r\n");
return kEfiOk;
}
|