[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/18: DRAFT hurd-boot: Support second boot.
From: |
guix-commits |
Subject: |
15/18: DRAFT hurd-boot: Support second boot. |
Date: |
Fri, 21 Jul 2023 12:00:02 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit e4a1416c865500780875af4dc7f70fe1cee315ce
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")
- 05/18: gnu: guix: Disable some tests on the Hurd., (continued)
- 05/18: gnu: guix: Disable some tests on the Hurd., guix-commits, 2023/07/21
- 16/18: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/07/21
- 02/18: tests: packages: Set system for expected result of package->bag., guix-commits, 2023/07/21
- 07/18: self: Build gnu/packages/*.go in 26 steps on the Hurd., guix-commits, 2023/07/21
- 08/18: gnu: guix: Update to 1.4.0-8.5623ab503f., guix-commits, 2023/07/21
- 09/18: gnu: guix: Update to 1.4.0-9.ee343946cc., guix-commits, 2023/07/21
- 10/18: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/07/21
- 12/18: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/07/21
- 13/18: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/07/21
- 14/18: DRAFT hurd: Support second boot., guix-commits, 2023/07/21
- 15/18: DRAFT hurd-boot: Support second boot.,
guix-commits <=
- 17/18: gnu: Add libc-locales-for-target and glibc-locales/hurd., guix-commits, 2023/07/21
- 18/18: locale: Set %default-locale-definitions to glibc/hurd on the Hurd., guix-commits, 2023/07/21