Skip to content

Commit

Permalink
protos: Keep linux protocol disabled on loong64 as it is not confirme…
Browse files Browse the repository at this point in the history
…d working
  • Loading branch information
mintsuki committed Dec 26, 2024
1 parent 512da26 commit c73505f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions common/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,12 @@ noreturn void boot(char *config) {
if (!strcmp(proto, "limine")) {
limine_load(config, cmdline);
} else if (!strcmp(proto, "linux")) {
#if defined (__loongarch64)
quiet = false;
print("TODO: Linux is not available on LoongArch64.\n\n");
#else
linux_load(config, cmdline);
#endif
} else if (!strcmp(proto, "multiboot1") || !strcmp(proto, "multiboot")) {
#if defined (__x86_64__) || defined (__i386__)
multiboot1_load(config, cmdline);
Expand Down

0 comments on commit c73505f

Please sign in to comment.