blob: 7bf7fb62cb4eeb9914f12fbcd18f0d6017a49a6a (
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::HandoverInformationHeader* 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;
}
|