diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-05-23 11:28:10 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-05-27 18:25:15 +0200 |
| commit | bcfe9dba35926b496b8bceafeea2d1bedc8c6017 (patch) | |
| tree | 545c4610b29064c59450ad8c7396e8ff9009c039 | |
| parent | fe11a2a2e9b0a9eb43ccc94ae406aa7d24416fba (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
| -rw-r--r-- | gnu/ci.scm | 11 |
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 |
| 175 | type or a GNU triplet." | 175 | type 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 '()))) |
