/* * ======================================================== * * NetBoot * Copyright EL Mahrouss Logic., all rights reserved. * * ======================================================== */ #include 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; }