[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
29/48: system: gnu: Add %bootstrap-{gcc, binutils, glibc} for devel prof
From: |
guix-commits |
Subject: |
29/48: system: gnu: Add %bootstrap-{gcc, binutils, glibc} for devel profile. |
Date: |
Sun, 19 Apr 2020 10:22:14 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd-vm
in repository guix.
commit 217da26169579178674309cff2079d0220292c20
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sun Apr 19 11:15:14 2020 +0200
system: gnu: Add %bootstrap-{gcc,binutils,glibc} for devel profile.
* gnu/system/hurd.scm (system-profile): Add them.
("/root/.gitconfig"): Add git configuration for GNU.
---
gnu/system/hurd.scm | 34 ++++++++++++++++++++++++++++++----
1 file changed, 30 insertions(+), 4 deletions(-)
diff --git a/gnu/system/hurd.scm b/gnu/system/hurd.scm
index 5b03cdd..52ac491 100644
--- a/gnu/system/hurd.scm
+++ b/gnu/system/hurd.scm
@@ -30,6 +30,7 @@
#:use-module (gnu packages admin)
#:use-module (gnu packages base)
#:use-module (gnu packages bash)
+ #:use-module (gnu packages bootstrap)
#:use-module (gnu packages commencement)
#:use-module (gnu packages compression)
#:use-module (gnu packages cross-base)
@@ -249,9 +250,23 @@ fi\n")))
(dependencies (map cross-built-entry
(manifest-entry-dependencies entry)))))
+ (define (cross-bootstrap thing)
+ (with-parameters ((%current-system "i586-gnu"))
+ thing))
+
+ (define (cross-bootstrap-entry entry)
+ (manifest-entry
+ (inherit entry)
+ (item (cross-bootstrap (manifest-entry-item entry)))))
+
(define system-profile
- (map-manifest-entries cross-built-entry
- (packages->manifest (operating-system-packages os))))
+ (concatenate-manifests
+ (list (map-manifest-entries cross-built-entry
+ (packages->manifest
(operating-system-packages os)))
+ (map-manifest-entries cross-bootstrap-entry
+ (packages->manifest (list %bootstrap-gcc
+ %bootstrap-binutils
+
%bootstrap-glibc))))))
(define grub.cfg
(let ((hurd (cross-built hurd))
@@ -316,6 +331,15 @@ sshd:x:2:2:sshd:/var/empty:/bin/no-sh
(with-parameters ((%current-target-system "i586-pc-gnu"))
(operating-system-activation-script os)))
+ (define root-.gitconfig
+ (plain-file "root-.gitconfig"
+ "\
+[url \"git+ssh://git.sv.gnu.org/srv/git/\"]
+ insteadof = gnu-ssh:
+[url \"git://git.savannah.gnu.org/\"]
+ insteadof = gnu:
+")) ;" help Emacs
+
(define hurd-directives
`((directory "/servers")
,@(map (lambda (server)
@@ -374,7 +398,8 @@ sshd:x:2:2:sshd:/var/empty:/bin/no-sh
("/bin/sh" -> ,(file-append (with-parameters ((%current-target-system
"i586-pc-gnu"))
bash)
- "/bin/sh"))))
+ "/bin/sh"))
+ ("/root/.gitconfig" -> ,root-.gitconfig)))
(qemu-image #:file-system-type "ext2"
#:file-system-options '("-o" "hurd")
@@ -386,7 +411,8 @@ sshd:x:2:2:sshd:/var/empty:/bin/no-sh
("group" ,group)
("shadow" ,shadow)
("shepherd.conf" ,shepherd.conf)
- ("boot-activation" ,boot-activation))
+ ("boot-activation" ,boot-activation)
+ ("root-.gitconfig" ,root-.gitconfig))
#:copy-inputs? #t
#:os system-profile
#:bootcfg-drv grub.cfg
- 12/48: gnu: Add netdde., (continued)
- 12/48: gnu: Add netdde., guix-commits, 2020/04/19
- 17/48: services: Add hurd-ttys-service-type., guix-commits, 2020/04/19
- 18/48: services: Add hurd-user-services-service-type., guix-commits, 2020/04/19
- 22/48: services: Add openssh-service as a Hurd service., guix-commits, 2020/04/19
- 15/48: services: Add hurd., guix-commits, 2020/04/19
- 14/48: gnu: Add libtirpc/hurd., guix-commits, 2020/04/19
- 28/48: system: hurd: Create system profile for guix development., guix-commits, 2020/04/19
- 21/48: services: hurd: Add dummy loopback., guix-commits, 2020/04/19
- 25/48: system: gnu: Populate "/etc" from "/boot/activation"., guix-commits, 2020/04/19
- 19/48: services: Add guix-daemon-service as a Hurd service., guix-commits, 2020/04/19
- 29/48: system: gnu: Add %bootstrap-{gcc, binutils, glibc} for devel profile.,
guix-commits <=
- 30/48: guile: Disable web-server test on the Hurd., guix-commits, 2020/04/19
- 31/48: gnu: tar: Disable troublesome tests on the Hurd., guix-commits, 2020/04/19
- 32/48: gnu: tls: Remove datefudge and disable tests on the Hurd., guix-commits, 2020/04/19
- 20/48: services: hurd: Add dummy syslog., guix-commits, 2020/04/19
- 35/48: HACK gnu: python: Disable tests on the Hurd., guix-commits, 2020/04/19
- 36/48: system: hurd: Add guix., guix-commits, 2020/04/19
- 39/48: gnu: guix: Fix cross-compilation., guix-commits, 2020/04/19
- 38/48: gnu: guix: Use gnutls-3.6.13 when cross-compiling., guix-commits, 2020/04/19
- 42/48: gnu: guix: Apply courage for the Hurd., guix-commits, 2020/04/19
- 43/48: gnu: guix: Add dependency on `hurd' when building for the Hurd., guix-commits, 2020/04/19