summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBA/Modules/SysChk/Module.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ZBA/Modules/SysChk/Module.cxx')
-rw-r--r--dev/ZBA/Modules/SysChk/Module.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/dev/ZBA/Modules/SysChk/Module.cxx b/dev/ZBA/Modules/SysChk/Module.cxx
index fa564324..9bc3425c 100644
--- a/dev/ZBA/Modules/SysChk/Module.cxx
+++ b/dev/ZBA/Modules/SysChk/Module.cxx
@@ -9,12 +9,14 @@
#include <BootKit/BootKit.hxx>
-EXTERN_C Int32 main(Kernel::HEL::HandoverInformationHeader* Handover)
+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 EXT4 PARTITIONS...\r");
- cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: WE ARE GOOD TO GO!\r");
+
+ cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: CHECKING FOR VALID NEWFS OR EXT4 PARTITIONS...\r\n");
+ cST->ConOut->OutputString(cST->ConOut, L"SYSCHK: GOOD TO GO!\r\n");
return kEfiOk;
}