GNU bug report logs - #73927
[PATCH 00/16] Installer support for (cross) installing the Hurd.

Previous Next

Package: guix-patches;

Reported by: Janneke Nieuwenhuizen <janneke <at> gnu.org>

Date: Mon, 21 Oct 2024 08:15:02 UTC

Severity: normal

Tags: patch

Done: <janneke <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


Message #14 received at 73927 <at> debbugs.gnu.org (full text, mbox):

From: Janneke Nieuwenhuizen <janneke <at> gnu.org>
To: 73927 <at> debbugs.gnu.org
Subject: [PATCH 03/16] hurd-boot: Support system init: Create essential device
 nodes.
Date: Mon, 21 Oct 2024 10:16:59 +0200
* gnu/build/hurd-boot.scm (make-hurd-device-nodes): Cater for existing
directories (dev, servers).
(set-hurd-device-translators): Remove /servers/socket/1, that is created by
libexec/console-run.  Cater for nonexistent /dev/console.
(boot-hurd-system): Call make-hurd-device-nodes on initial run.
---
 gnu/build/hurd-boot.scm | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm
index 4407284acb..daf4fb41ab 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -79,13 +79,13 @@ (define* (make-hurd-device-nodes #:optional (root "/"))
   (define (scope dir)
     (string-append root (if (string-suffix? "/" root) "" "/") dir))
 
-  (mkdir (scope "dev"))
+  (mkdir-p (scope "dev"))
   ;; Don't create /dev/null etc just yet; the store
   ;; messes-up the permission bits.
   ;; Don't create /dev/console, /dev/vcs, etc.: they are created by
   ;; console-run on first boot.
 
-  (mkdir (scope "servers"))
+  (mkdir-p (scope "servers"))
   (for-each (lambda (file)
               (call-with-output-file (scope (string-append "servers/" file))
                 (lambda (port)
@@ -100,7 +100,8 @@ (define* (make-hurd-device-nodes #:optional (root "/"))
               "kill"
               "suspend"))
 
-  (mkdir (scope "servers/socket"))
+  (mkdir-p (scope "servers/socket"))
+
   ;; Don't create /servers/socket/1 & co: runsystem does that on first boot.
 
   ;; TODO: Set the 'gnu.translator' extended attribute for passive translator
@@ -279,7 +280,8 @@ (define* (set-hurd-device-translators #:optional (root "/"))
   (for-each scope-set-translator servers)
   (mkdir* "dev/vcs/1")
   (mkdir* "dev/vcs/2")
-  (rename-file (scope "dev/console") (scope "dev/console-"))
+  (when (file-exists? (scope "dev/console"))
+    (rename-file (scope "dev/console") (scope "dev/console-")))
   (for-each scope-set-translator devices)
 
   (false-if-EEXIST (symlink "/dev/random" (scope "dev/urandom")))
@@ -326,6 +328,10 @@ (define* (boot-hurd-system #:key (on-error 'debug))
        (let ((hurd/hurd (readlink* (string-append system "/profile/hurd"))))
          (symlink hurd/hurd "/hurd"))
 
+       (unless (file-exists? "/servers/startup")
+         (format #t "Creating essential device nodes...\n")
+         (make-hurd-device-nodes))
+
        (format #t "Setting-up essential translators...\n")
        (setenv "PATH" (string-append system "/profile/bin"))
        (set-hurd-device-translators)
-- 
2.46.0





This bug report was last modified 222 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.