summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/Source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-01 12:46:54 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-01 12:46:54 +0100
commit54a426e7d11eb12a8c3710f3632b7084edf423fd (patch)
treee818b906f607b15fcb8bc204baf4aeb746d142f1 /Private/NewBoot/Source
parent6d7e78543509af471568cf698c58a9f526dba129 (diff)
See below.
- Implement Framebuffer object. - Print Firmware name in NewBoot. Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/NewBoot/Source')
-rw-r--r--Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx b/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx
index d1d230b6..d06338b5 100644
--- a/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx
+++ b/Private/NewBoot/Source/HEL/AMD64/Entrypoint.cxx
@@ -19,7 +19,9 @@ EFI_EXTERN_C int EfiMain(EfiHandlePtr ImageHandle,
KeInitEFI(SystemTable);
BTextWriter writer;
- writer.WriteString(L"HCoreLdr: Booting from \\Volume0\\...")
+ writer.WriteString(L"HCoreLdr: Firmware: ")
+ .WriteString(SystemTable->FirmwareVendor)
+ .WriteString(L"\r\nHCoreLdr: Booting on \\Volume0\\ (FAT32)")
.WriteString(L"\r\n");
UInt64 mapKey = 0;