:: commit e6adc164bb9f09a5468f470d347d582f6a8e36ab

Kacper Słomiński <kacper.slominski72@gmail.com> — 2021-06-29 14:04

parents: 6bb204bbd9

entry: accept "multiboot" as well as "multiboot1"

diff --git a/stage23/entry.s3.c b/stage23/entry.s3.c
index 15520774..b573d950 100644
--- a/stage23/entry.s3.c
+++ b/stage23/entry.s3.c
@@ -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);
     }
 
tab: 248 wrap: offon