summaryrefslogtreecommitdiff
path: root/gnu/build/vm.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-04-06 16:19:05 +0200
committerLudovic Courtès <ludo@gnu.org>2020-04-11 20:48:12 +0200
commit683cba75ea529c7390a79826124d7798d47d65cd (patch)
treef1e357f54e526d21fa6882e55039fa7aab1abe2d /gnu/build/vm.scm
parent6a488a3504b345b193e24dfdba2a2ac6b1db1234 (diff)
downloadpatches-683cba75ea529c7390a79826124d7798d47d65cd.tar
patches-683cba75ea529c7390a79826124d7798d47d65cd.tar.gz
linux-boot: 'make-essential-device-nodes' root parameter is optional.
* gnu/build/linux-boot.scm (make-essential-device-nodes): Change 'root' to an optional parameter. * gnu/build/vm.scm (root-partition-initializer): Adjust accordingly.
Diffstat (limited to 'gnu/build/vm.scm')
-rw-r--r--gnu/build/vm.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm
index 84bb2592e2..c062ab5c71 100644
--- a/gnu/build/vm.scm
+++ b/gnu/build/vm.scm
@@ -392,7 +392,7 @@ system that is passed to 'populate-root-file-system'."
target))
;; Populate /dev.
- (make-essential-device-nodes #:root target)
+ (make-essential-device-nodes target)
;; Optionally, register the inputs in the image's store.
(when register-closures?