[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73927] [PATCH v4 08/18] hurd-boot: Support second boot.
From: |
Janneke Nieuwenhuizen |
Subject: |
[bug#73927] [PATCH v4 08/18] hurd-boot: Support second boot. |
Date: |
Wed, 30 Oct 2024 15:30:37 +0100 |
* 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 @@ (define* (boot-hurd-system #:key (on-error 'debug))
(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")
--
Janneke Nieuwenhuizen <janneke@gnu.org> | GNU LilyPond https://LilyPond.org
Freelance IT https://www.JoyOfSource.com | AvatarĀ® https://AvatarAcademy.com
- [bug#73927] [PATCH v4 04/18] bootloader: grub: Remove hardcoded partition number for the Hurd., (continued)
- [bug#73927] [PATCH v4 04/18] bootloader: grub: Remove hardcoded partition number for the Hurd., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 05/18] system: hurd: Remove qemu networking from %base-services/hurd., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 07/18] gnu: hurd: Support second boot., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 06/18] system: hurd: Add swap-services to hurd-default-essential-services., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 13/18] installer: Fix file-name typos., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 03/18] guix system: When installing the Hurd, create essential devices., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 12/18] installer: Use "partitioning-page" consistently., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 11/18] installer: Align comments., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 02/18] reconfigure: Use native bootloader package for running the installer., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 09/18] maint: Add installer dependencies to the manifest., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 08/18] hurd-boot: Support second boot.,
Janneke Nieuwenhuizen <=
- [bug#73927] [PATCH v4 10/18] installer: Remove unused (newt) imports., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 14/18] installer: Use `%' for parameter %run-command-in-installer., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 15/18] installer: Add dry-run?, Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 18/18] installer: Support dry-run from Guile via store., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 16/18] installer: Add "Kernel" page to select the Hurd., Janneke Nieuwenhuizen, 2024/10/30
- [bug#73927] [PATCH v4 17/18] installer: Add static-networking template., Janneke Nieuwenhuizen, 2024/10/30