[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/66: hurd-boot: Support system init: Create essential device nodes.
From: |
guix-commits |
Subject: |
18/66: hurd-boot: Support system init: Create essential device nodes. |
Date: |
Fri, 14 Jul 2023 17:56:39 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 5c159174d84be87f7e5c7ff70372c7df37743f63
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue May 30 18:07:17 2023 +0200
hurd-boot: Support system init: Create essential device nodes.
* 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 19bdbdf6ae..bd19fd5212 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -79,13 +79,13 @@ Return the value associated with OPTION, or #f on failure."
(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 @@ Return the value associated with OPTION, or #f on failure."
"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
@@ -266,7 +267,8 @@ set."
(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")))
@@ -313,6 +315,10 @@ XXX TODO: use Linux xattr/setxattr to remove (settrans in)
/libexec/RUNSYSTEM
(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)
- 13/66: gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hurd., (continued)
- 13/66: gnu: findutils: Move test-strerror_r from XFAIL to skip on the Hurd., guix-commits, 2023/07/14
- 15/66: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/07/14
- 01/66: gnu: mig: Update to 1.8+git20230520., guix-commits, 2023/07/14
- 05/66: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/07/14
- 08/66: Revert "gnu: libunistring: Fix make check for the Hurd.", guix-commits, 2023/07/14
- 11/66: gnu: grep: Update hanging and failing tests on the Hurd., guix-commits, 2023/07/14
- 12/66: Revert "gnu: sed: Skip failing test on GNU/Hurd.", guix-commits, 2023/07/14
- 14/66: gnu: diffutils: Remove test-perror2 from XFAIL_TESTS on the Hurd., guix-commits, 2023/07/14
- 16/66: gnu: m4: Skip gnulib stack-overflow tests for the Hurd., guix-commits, 2023/07/14
- 17/66: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/07/14
- 18/66: hurd-boot: Support system init: Create essential device nodes.,
guix-commits <=
- 37/66: gnu: ruby-2.6: Skip test on the Hurd., guix-commits, 2023/07/14
- 38/66: gnu: tcsh: Skip substitution tests on the Hurd., guix-commits, 2023/07/14
- 39/66: gnu: swig: Skip tests when building for the Hurd., guix-commits, 2023/07/14
- 04/66: gnu: commencement: gnumach-headers-boot0: Update to 1.8+git20221224., guix-commits, 2023/07/14
- 09/66: gnu: guile: Skip hanging and failing pipe tests on the Hurd., guix-commits, 2023/07/14
- 21/66: gnu: mpfr: Skip failing test on the Hurd., guix-commits, 2023/07/14
- 28/66: gnu: curl: Skip failing test on the Hurd., guix-commits, 2023/07/14
- 31/66: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/07/14
- 32/66: gnu: e2fsprogs: Skip failing tests on the Hurd., guix-commits, 2023/07/14
- 35/66: gnu: cairo: Support building for the Hurd., guix-commits, 2023/07/14