From b46b896be7befd7aadee2b1761bdc655b1ac56e3 Mon Sep 17 00:00:00 2001 From: mintsuki Date: Tue, 25 Jun 2024 13:50:30 +0200 Subject: [PATCH] menu: Minor change to multiboot1/2 unsupported messages --- common/menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/menu.c b/common/menu.c index cc3ad29e..adf4b038 100644 --- a/common/menu.c +++ b/common/menu.c @@ -1110,14 +1110,14 @@ noreturn void boot(char *config) { multiboot1_load(config, cmdline); #else quiet = false; - print("Multiboot 1 is not available on aarch64 or riscv64.\n\n"); + print("Multiboot 1 is not available on non-x86 architectures.\n\n"); #endif } else if (!strcmp(proto, "multiboot2")) { #if defined (__x86_64__) || defined (__i386__) multiboot2_load(config, cmdline); #else quiet = false; - print("Multiboot 2 is not available on aarch64 or riscv64.\n\n"); + print("Multiboot 2 is not available on non-x86 architectures.\n\n"); #endif } else if (!strcmp(proto, "chainload_next")) { chainload_next(config, cmdline);