summaryrefslogtreecommitdiff
path: root/gnu/ci.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2026-05-23 11:28:10 +0200
committerLudovic Courtès <ludo@gnu.org>2026-05-27 18:25:15 +0200
commitbcfe9dba35926b496b8bceafeea2d1bedc8c6017 (patch)
tree545c4610b29064c59450ad8c7396e8ff9009c039 /gnu/ci.scm
parentfe11a2a2e9b0a9eb43ccc94ae406aa7d24416fba (diff)
ci: (Cross-)build the architecture-specific Linux-libre packages.
* gnu/ci.scm (core-packages): In ‘target-linux?’ case, add the linux-libre-*-generic architecture-specific kernel packages. Change-Id: Ie9579b5b77160e57e563542a03fdd6e563fcc193 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Merges: #8776
Diffstat (limited to 'gnu/ci.scm')
-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 '())))