build: image: Do not call make-essential-device-nodes by default.
authorMathieu Othacehe <othacehe@gnu.org>
Tue, 9 Jun 2020 08:23:15 +0000 (10:23 +0200)
committerMathieu Othacehe <othacehe@gnu.org>
Tue, 9 Jun 2020 08:32:19 +0000 (10:32 +0200)
Calling "mknod" without root permissions fails. Plus those device nodes do not
appear to be needed to boot.

* gnu/build/image.scm (initialize-root-partition): Do not use
make-essential-device-nodes as default make-device-nodes procedure.

gnu/build/image.scm

index fb85bd4..893b846 100644 (file)
@@ -161,8 +161,7 @@ deduplicates files common to CLOSURE and the rest of PREFIX."
                                     references-graphs
                                     (register-closures? #t)
                                     system-directory
-                                    (make-device-nodes
-                                     make-essential-device-nodes)
+                                    make-device-nodes
                                     #:allow-other-keys)
   "Initialize the given ROOT directory. Use BOOTCFG and BOOTCFG-LOCATION to
 install the bootloader configuration.
@@ -175,7 +174,8 @@ of the directory of the 'system' derivation."
   (populate-store references-graphs root)
 
   ;; Populate /dev.
-  (make-device-nodes root)
+  (when make-device-nodes
+    (make-device-nodes root))
 
   (when register-closures?
     (for-each (lambda (closure)