summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBAKit/Modules/SysChk/Module.cc
blob: 74f7c6615498324f338dcd82563ec3cc75c52e96 (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 Web Services Co., all rights reserved.
 *
 * 	========================================================
 */

#include <BootKit/BootKit.h>

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 NEFS OR HPFS PARTITIONS...\r\n");
	cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: GOOD TO GO!\r\n");

	return kEfiOk;
}