mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-04-18 05:38:36 +01:00
Fix drive initialization type report.
Fix drive probe not halting boot process when no ATAPI drives are found. #7
This commit is contained in:
parent
2d83a110c3
commit
907b136cc1
2 changed files with 3 additions and 1 deletions
Binary file not shown.
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue