mirror of
https://github.com/limine-bootloader/limine
synced 2025-01-06 04:42:16 +03:00
menu: Minor change to multiboot1/2 unsupported messages
This commit is contained in:
parent
cfd43201e9
commit
b46b896be7
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user