Early print XTLDR version
所有检测均成功
Builds / ExectOS (amd64) (push) Successful in 26s
Builds / ExectOS (i686) (push) Successful in 24s

这个提交包含在:
2023-12-03 00:50:44 +01:00
父节点 f161b37faf
当前提交 a99ce415ca

查看文件

@@ -33,8 +33,12 @@ BmStartXtLoader(IN EFI_HANDLE ImageHandle,
EfiImageHandle = ImageHandle; EfiImageHandle = ImageHandle;
EfiSystemTable = SystemTable; EfiSystemTable = SystemTable;
/* Initialize UEFI console */ /* Initialize UEFI console and early print XTLDR version */
BmInitializeConsole(); 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 */ /* This point should be never reached, if this happen return error code */
return STATUS_EFI_LOAD_ERROR; return STATUS_EFI_LOAD_ERROR;