summaryrefslogtreecommitdiffhomepage
path: root/dev/ZBAKit/Modules/SysChk/Module.cc
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-12-21 21:59:13 +0100
committerAmlal <amlalelmahrouss@icloud.com>2024-12-21 21:59:45 +0100
commit610f91d87152cbe48d3054fcf437d8239da6ef35 (patch)
treea386f7047ab73d088169ab2371ddc6ffe8020f1c /dev/ZBAKit/Modules/SysChk/Module.cc
parent509fcca5986651c8ba712fb395f8498f2dea4109 (diff)
IMP: :boom: Breaking changes some checks are needed to be done.
Signed-off-by: Amlal <amlalelmahrouss@icloud.com>
Diffstat (limited to 'dev/ZBAKit/Modules/SysChk/Module.cc')
-rw-r--r--dev/ZBAKit/Modules/SysChk/Module.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev/ZBAKit/Modules/SysChk/Module.cc b/dev/ZBAKit/Modules/SysChk/Module.cc
deleted file mode 100644
index b0808fde..00000000
--- a/dev/ZBAKit/Modules/SysChk/Module.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * ========================================================
- *
- * NetBoot
- * Copyright (C) 2024, Theater Quality Inc, all rights reserved., all rights reserved.
- *
- * ========================================================
- */
-
-#include <BootKit/BootKit.h>
-
-EXTERN_C Int32 ModuleMain(Kernel::HEL::BootInfoHeader* Handover)
-{
- EfiSystemTable* system_table = (EfiSystemTable*)Handover->f_FirmwareCustomTables[1];
-
- system_table->ConOut->ClearScreen(system_table->ConOut);
-
- system_table->ConOut->OutputString(system_table->ConOut, L"SYSCHK: CHECKING FOR VALID NEFS OR HPFS PARTITIONS...\r\n");
- system_table->ConOut->OutputString(system_table->ConOut, L"SYSCHK: GOOD TO GO!\r\n");
-
- return kEfiOk;
-}