mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-03 21:52:39 +03:00
main: Add missing switch case for CD boot
This commit is contained in:
parent
c2cbddb3fe
commit
60742ea6a5
@ -48,7 +48,8 @@ void entry(uint8_t _boot_drive, int boot_from) {
|
||||
volume_create_index();
|
||||
|
||||
switch (boot_from) {
|
||||
case BOOT_FROM_HDD: {
|
||||
case BOOT_FROM_HDD:
|
||||
case BOOT_FROM_CD: {
|
||||
print("Boot drive: %x\n", boot_drive);
|
||||
struct volume boot_volume;
|
||||
volume_get_by_coord(&boot_volume, boot_drive, -1);
|
||||
|
Loading…
Reference in New Issue
Block a user