mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-14 02:27:11 +03:00
entry: accept "multiboot" as well as "multiboot1"
This commit is contained in:
parent
6bb204bbd9
commit
e6adc164bb
@ -123,7 +123,7 @@ void stage3_common(void) {
|
|||||||
linux_load(config, cmdline);
|
linux_load(config, cmdline);
|
||||||
} else if (!strcmp(proto, "chainload")) {
|
} else if (!strcmp(proto, "chainload")) {
|
||||||
chainload(config);
|
chainload(config);
|
||||||
} else if (!strcmp(proto, "multiboot1")) {
|
} else if (!strcmp(proto, "multiboot1") || !strcmp(proto, "multiboot")) {
|
||||||
multiboot1_load(config, cmdline);
|
multiboot1_load(config, cmdline);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user