Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
14 lines
468 B
Diff
14 lines
468 B
Diff
diff --git a/module/system/base/target.scm b/module/system/base/target.scm
|
|
index 95ab8d8c9..93616f4a3 100644
|
|
--- a/module/system/base/target.scm
|
|
+++ b/module/system/base/target.scm
|
|
@@ -86,6 +86,8 @@
|
|
(endianness big))
|
|
((string=? "aarch64" cpu)
|
|
(endianness little))
|
|
+ ((string-match "riscv[1-9][0-9]*" cpu)
|
|
+ (endianness little))
|
|
(else
|
|
(error "unknown CPU endianness" cpu)))))
|
|
|