Early print XTLDR version
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 26s
Builds / ExectOS (i686) (push) Successful in 24s

This commit is contained in:
Rafal Kupiec 2023-12-03 00:50:44 +01:00
parent f161b37faf
commit a99ce415ca
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -33,8 +33,12 @@ BmStartXtLoader(IN EFI_HANDLE ImageHandle,
EfiImageHandle = ImageHandle;
EfiSystemTable = SystemTable;
/* Initialize UEFI console */
/* Initialize UEFI console and early print XTLDR version */
BmInitializeConsole();
BmPrint(L"XTLDR boot loader v%s\n", XTOS_VERSION);
/* Temporary infinite loop */
for(;;);
/* This point should be never reached, if this happen return error code */
return STATUS_EFI_LOAD_ERROR;