summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/ci.scm11
1 files changed, 10 insertions, 1 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm
index 093beac4cf6..a55dfc2a5f3 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -173,7 +173,16 @@ SYSTEM."
173(define (core-packages system) 173(define (core-packages system)
174 "Return the 'core' package set suitable for SYSTEM, which might be a system 174 "Return the 'core' package set suitable for SYSTEM, which might be a system
175type or a GNU triplet." 175type or a GNU triplet."
176 (cond ((target-linux? system) (append %core-packages %linux-packages)) 176 (cond ((target-linux? system)
177 (append %core-packages
178 %linux-packages
179 (cond ((target-arm32? system)
180 (list linux-libre-arm-generic))
181 ((target-aarch64? system)
182 (list linux-libre-arm64-generic))
183 ((target-riscv64? system)
184 (list linux-libre-riscv64-generic))
185 (else '()))))
177 ((target-hurd? system) (append %core-packages %hurd-packages)) 186 ((target-hurd? system) (append %core-packages %hurd-packages))
178 ((target-mingw? system) %core-packages-for-mingw) 187 ((target-mingw? system) %core-packages-for-mingw)
179 (else '()))) 188 (else '())))