summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-31 17:09:04 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-31 17:09:04 +0100
commit8f7904569a60721cfd051a359dd17cc86ea67cfe (patch)
treead432b67b1ec26cf560c4ad7a02ed8322b36d4b2 /Private/NewBoot
parent91a554f36af763394835f29ecdefdf2d6448a6c3 (diff)
Kernel: add Terminal init sequence in KeInitEFI.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/NewBoot')
-rw-r--r--Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx b/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx
index 3e96ff14..17d308df 100644
--- a/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx
+++ b/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx
@@ -18,16 +18,13 @@ EFI_EXTERN_C int EfiMain(EfiHandlePtr ImageHandle,
EfiSystemTable* SystemTable) {
KeInitEFI(SystemTable);
- SystemTable->ConOut->ClearScreen(SystemTable->ConOut);
- SystemTable->ConOut->SetAttribute(SystemTable->ConOut, kEFIYellow);
-
BTextWriter writer;
writer.WriteString(L"HCoreLdr: Booting from \\Volume0\\...")
.WriteString(L"\r\n");
UInt64 mapKey = 0;
- BFileReader reader(L"\\MAHROUSS\\Root\\System\\HCoreKrnl.efi\0");
+ BFileReader reader(L"\\MAHROUSS\\Root\\System\\HCoreKrnl.exe\0");
auto blob = reader.ReadAll();
if (!blob)