Check block devices enumeration status
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 28s
Builds / ExectOS (i686) (push) Successful in 27s

This commit is contained in:
Rafal Kupiec 2023-12-07 15:56:39 +01:00
parent a413ae852e
commit 3025338e71
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -69,7 +69,12 @@ BlStartXtLoader(IN EFI_HANDLE ImageHandle,
}
/* Discover and enumerate EFI block devices */
BlEnumerateBlockDevices();
Status = BlEnumerateBlockDevices();
if(Status != STATUS_EFI_SUCCESS)
{
/* Failed to enumerate block devices */
BlDebugPrint(L"ERROR: Failed to discover and enumerate block devices\n");
}
/* Temporary infinite loop */
for(;;);