[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/12: DRAFT hurd-boot: Support second boot.
From: |
guix-commits |
Subject: |
08/12: DRAFT hurd-boot: Support second boot. |
Date: |
Tue, 19 Sep 2023 05:11:28 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 4c7dacac2d20e85d871c35cffdb414153fa8ad1d
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue May 30 18:08:38 2023 +0200
DRAFT hurd-boot: Support second boot.
* gnu/build/hurd-boot.scm (boot-hurd-system): Check for stale shepherd
socket
and remove it. Be chattier about /hurd symlink replacement.
---
gnu/build/hurd-boot.scm | 21 ++++++++++++++++-----
1 file changed, 16 insertions(+), 5 deletions(-)
diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm
index bd19fd5212..c412a9a394 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -309,18 +309,29 @@ XXX TODO: use Linux xattr/setxattr to remove (settrans
in) /libexec/RUNSYSTEM
(let* ((args (command-line))
(system (find-long-option "gnu.system" args))
- (to-load (find-long-option "gnu.load" args)))
+ (to-load (find-long-option "gnu.load" args))
+ (profile (string-append system "/profile"))
+ (bin (string-append profile "/bin"))
+ (sbin (string-append profile "/bin")))
- (false-if-exception (delete-file "/hurd"))
- (let ((hurd/hurd (readlink* (string-append system "/profile/hurd"))))
- (symlink hurd/hurd "/hurd"))
+ (setenv "PATH" (string-append bin ":" sbin))
+
+ (when (file-exists? "/var/run/shepherd/socket")
+ (format #t "Removing stale shepherd socket...\n")
+ (delete-file "/var/run/shepherd/socket"))
(unless (file-exists? "/servers/startup")
(format #t "Creating essential device nodes...\n")
(make-hurd-device-nodes))
+ (let ((profile/hurd (readlink* (string-append profile "/hurd"))))
+ (when (file-exists? "/hurd")
+ (format #t "Removing stale /hurd link\n")
+ (delete-file "/hurd"))
+ (format #t "Linking /hurd from ~a...\n" profile/hurd)
+ (symlink profile/hurd "/hurd"))
+
(format #t "Setting-up essential translators...\n")
- (setenv "PATH" (string-append system "/profile/bin"))
(set-hurd-device-translators)
(format #t "Starting pager...\n")
- branch hurd-team created (now 539b171a59), guix-commits, 2023/09/19
- 03/12: system: bare-hurd.tmpl: Include glibc-2.33 locales in cross-build., guix-commits, 2023/09/19
- 04/12: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/09/19
- 06/12: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/09/19
- 10/12: gnu: Add libc-locales-for-target and glibc-locales/hurd., guix-commits, 2023/09/19
- 12/12: Revert "DRAFT daemon: Support chroot builds on GNU/Hurd.", guix-commits, 2023/09/19
- 01/12: gnu: guix: Update to 1.4.0-11.15c5f1a2c2., guix-commits, 2023/09/19
- 02/12: gnu: guix: Update to 1.4.0-12.d739255432., guix-commits, 2023/09/19
- 05/12: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/09/19
- 07/12: DRAFT hurd: Support second boot., guix-commits, 2023/09/19
- 08/12: DRAFT hurd-boot: Support second boot.,
guix-commits <=
- 09/12: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/09/19
- 11/12: DRAFT daemon: Support chroot builds on GNU/Hurd., guix-commits, 2023/09/19