summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBA/Modules
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ZBA/Modules')
-rw-r--r--dev/ZBA/Modules/SysChk/Module.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/dev/ZBA/Modules/SysChk/Module.cxx b/dev/ZBA/Modules/SysChk/Module.cxx
index 15758599..fa564324 100644
--- a/dev/ZBA/Modules/SysChk/Module.cxx
+++ b/dev/ZBA/Modules/SysChk/Module.cxx
@@ -11,5 +11,10 @@
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;
}