summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBA/Modules/SysChk/Module.cxx
blob: fa564324830562e8ff4a5e4be6ccfc126759aaca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *	========================================================
 *
 *	NetBoot
 * 	Copyright ZKA Technologies., all rights reserved.
 *
 * 	========================================================
 */

#include <BootKit/BootKit.hxx>

EXTERN_C Int32 main(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 EXT4 PARTITIONS...\r");
	cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: WE ARE GOOD TO GO!\r");

	return kEfiOk;
}