:: commit b46b896be7befd7aadee2b1761bdc655b1ac56e3

mintsuki <mintsuki@protonmail.com> — 2024-06-25 11:50

parents: cfd43201e9

menu: Minor change to multiboot1/2 unsupported messages

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);
tab: 248 wrap: offon