XTLDR Rewrite #7

Merged
belliash merged 184 commits from xtldr_rewrite into master 2024-01-09 18:51:04 +01:00
Showing only changes of commit a99ce415ca - Show all commits

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;