From e6adc164bb9f09a5468f470d347d582f6a8e36ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20S=C5=82omi=C5=84ski?= Date: Tue, 29 Jun 2021 16:04:12 +0200 Subject: [PATCH] entry: accept "multiboot" as well as "multiboot1" --- stage23/entry.s3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }