[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/18: hurd-boot: Support second boot.
From: |
guix-commits |
Subject: |
07/18: hurd-boot: Support second boot. |
Date: |
Sat, 2 Nov 2024 09:27:49 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit e5823df954e22f9bb2caa269feaa79ffff4b16bc
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue May 30 18:08:38 2023 +0200
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.
Change-Id: I5e528c131ebeadb7ebc9727336a0f9301af3e68e
---
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 daf4fb41ab..23ace25d4f 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -322,18 +322,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")
- 03/18: bootloader: grub: Remove hardcoded partition number for the Hurd., (continued)
- 03/18: bootloader: grub: Remove hardcoded partition number for the Hurd., guix-commits, 2024/11/02
- 01/18: reconfigure: Use native bootloader package for running the installer., guix-commits, 2024/11/02
- 10/18: installer: Remove unused (newt) imports., guix-commits, 2024/11/02
- 14/18: installer: Use `%' for parameter %run-command-in-installer., guix-commits, 2024/11/02
- 16/18: installer: Add "Kernel" page to select the Hurd., guix-commits, 2024/11/02
- 12/18: installer: Use "partitioning-page" consistently., guix-commits, 2024/11/02
- 02/18: guix system: When installing the Hurd, create essential devices., guix-commits, 2024/11/02
- 04/18: system: hurd: Remove qemu networking from %base-services/hurd., guix-commits, 2024/11/02
- 05/18: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2024/11/02
- 06/18: gnu: hurd: Support second boot., guix-commits, 2024/11/02
- 07/18: hurd-boot: Support second boot.,
guix-commits <=
- 08/18: system: examples: Add devel-hurd.tmpl., guix-commits, 2024/11/02
- 09/18: maint: Add installer dependencies to the manifest., guix-commits, 2024/11/02
- 15/18: installer: Add dry-run?, guix-commits, 2024/11/02
- 18/18: installer: Support dry-run from Guile via store., guix-commits, 2024/11/02
- 11/18: installer: Align comments., guix-commits, 2024/11/02
- 17/18: installer: Add static-networking template., guix-commits, 2024/11/02
- 13/18: installer: Fix file-name typos., guix-commits, 2024/11/02