mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-11 17:24:08 +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);
|
||||
} else if (!strcmp(proto, "chainload")) {
|
||||
chainload(config);
|
||||
} else if (!strcmp(proto, "multiboot1")) {
|
||||
} else if (!strcmp(proto, "multiboot1") || !strcmp(proto, "multiboot")) {
|
||||
multiboot1_load(config, cmdline);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user