[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/21: gnu: bootstrap: linux-libre-headers-bootstrap: Support ARM.
From: |
guix-commits |
Subject: |
18/21: gnu: bootstrap: linux-libre-headers-bootstrap: Support ARM. |
Date: |
Wed, 19 Oct 2022 01:40:17 -0400 (EDT) |
janneke pushed a commit to branch wip-arm-bootstrap
in repository guix.
commit a524b98c67531f37895894fbd4afa86d8755eb23
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Feb 20 23:17:13 2022 +0100
gnu: bootstrap: linux-libre-headers-bootstrap: Support ARM.
* gnu/packages/bootstrap.scm (%bootstrap-linux-libre-headers): Add tarball
for
armhf-linux.
---
gnu/packages/bootstrap.scm | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index 6f5b21b8f0..ec4f89e61a 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -661,12 +661,23 @@ $out/bin/guile --version~%"
(origin
(method url-fetch)
(uri (map (cute string-append <>
- "/i686-linux/20190815/"
-
"linux-libre-headers-stripped-4.14.67-i686-linux.tar.xz")
+ (match system
+ ((or "armhf-linux" "aarch64-linux")
+ (string-append
+ "/armhf-linux/20201219/"
+
"linux-libre-headers-stripped-5.4.20-armhf-linux.tar.xz"))
+ ((or "i686-linux" "x86_64-linux")
+ (string-append
+ "/i686-linux/20190815/"
+
"linux-libre-headers-stripped-4.14.67-i686-linux.tar.xz"))))
%bootstrap-base-urls))
(sha256
(base32
- "0sm2z9x4wk45bh6qfs94p0w1d6hsy6dqx9sw38qsqbvxwa1qzk8s"))))
+ (match system
+ ((or "armhf-linux" "aarch64-linux")
+ "0d010sp3n2q6cc3ppcgrxrdlgkgr3vlv3x76wz14gc3xfhnnm2x5")
+ ((or "i686-linux" "x86_64-linux")
+ "0sm2z9x4wk45bh6qfs94p0w1d6hsy6dqx9sw38qsqbvxwa1qzk8s"))))))
#f ; no program to test
"Bootstrap linux-libre-headers"))
- branch wip-arm-bootstrap created (now 83842db321), guix-commits, 2022/10/19
- 08/21: gnu: commencement: bootstrap-mes-rewired: Support ARM., guix-commits, 2022/10/19
- 16/21: gnu: commencement: binutils-mesboot0: Support ARM., guix-commits, 2022/10/19
- 03/21: gnu: bootstrap: mes-minimal: Support ARM, update for mes-0.23.1., guix-commits, 2022/10/19
- 09/21: gnu: commencement: mes-boot: Support ARM, update to 0.23.1., guix-commits, 2022/10/19
- 12/21: gnu: commencement: gzip-mesboot: Support ARM., guix-commits, 2022/10/19
- 20/21: DRAFT gnu: commencement: glibc-mesboot0: Support ARM., guix-commits, 2022/10/19
- 13/21: gnu: commencement: make-mesboot0: Support ARM., guix-commits, 2022/10/19
- 15/21: gnu: commencement: patch-mesboot: Support ARM., guix-commits, 2022/10/19
- 18/21: gnu: bootstrap: linux-libre-headers-bootstrap: Support ARM.,
guix-commits <=
- 02/21: gnu: bootstrap: mescc-tools: Support ARM., guix-commits, 2022/10/19
- 01/21: gnu: mes: Update to 0.23.1., guix-commits, 2022/10/19
- 04/21: DRAFT gnu: bootstrap: %bootstrap-mescc-tools: Support ARM., guix-commits, 2022/10/19
- 06/21: DRAFT gnu: bootstrap: %bootstrap-mes: Support ARM., guix-commits, 2022/10/19
- 14/21: gnu: commencement: tcc-boot: Support ARM., guix-commits, 2022/10/19
- 19/21: gnu: commencement: mesboot-headers: Support ARM., guix-commits, 2022/10/19
- 05/21: gnu: bootstrap: %bootstrap-mescc-tools: Update ARM to 1.4.0., guix-commits, 2022/10/19
- 21/21: DRAFT gnu: commencement: gcc-mesboot0: Support ARM., guix-commits, 2022/10/19
- 07/21: gnu: commencement: gash-boot: Build fix for ARM., guix-commits, 2022/10/19
- 11/21: gnu: commencement: tcc-boot0: Update to tcc-0.9.26-1136-g1b4f281f., guix-commits, 2022/10/19