:: commit ca77c0002a83f6f41a1d1e23a0e573619c2cf12e

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

parents: cd5eeaa92d

menu: Minor change to multiboot1/2 unsupported messages

diff --git a/common/menu.c b/common/menu.c
index c54f4a0c..1420e196 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -1115,14 +1115,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