We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 050bbae + 9988795 commit 9b3545dCopy full SHA for 9b3545d
lib/systems/platforms.nix
@@ -583,6 +583,14 @@ rec {
583
# https://github.com/llvm/llvm-project/pull/132173
584
cmodel = "medium";
585
};
586
+ linux-kernel = {
587
+ name = "loongarch-multiplatform";
588
+ target = "vmlinuz.efi";
589
+ autoModules = true;
590
+ preferBuiltin = true;
591
+ baseConfig = "defconfig";
592
+ DTB = true;
593
+ };
594
595
596
# This function takes a minimally-valid "platform" and returns an
@@ -611,6 +619,9 @@ rec {
611
619
else if platform.isAarch64 then
612
620
if platform.isDarwin then apple-m1 else aarch64-multiplatform
613
621
622
+ else if platform.isLoongArch64 then
623
+ loongarch64-multiplatform
624
+
614
625
else if platform.isRiscV then
615
626
riscv-multiplatform
616
627
0 commit comments