Fix drive initialization type report.

Fix drive probe not halting boot process when no ATAPI drives are found. 
This commit is contained in:
TomAwezome 2021-06-24 21:16:15 -04:00
parent 2d83a110c3
commit 907b136cc1
2 changed files with 3 additions and 1 deletions

View file

@ -688,7 +688,7 @@ U0 AHCIInit()
" ATAPI drive\n";
}
else
" ATAPI drive\n";
" ATA drive\n";
if (!AHCIPortIsIdle(i))
{
@ -735,6 +735,8 @@ Bool AHCIBootDVDProbeAll(CBlkDev *bd)
}
}
Panic("Could not find ATAPI boot drive");
return FALSE;
}