summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-05-16 21:57:11 +0200
committerLudovic Courtès <ludo@gnu.org>2014-05-16 21:57:11 +0200
commitd216323f0ae66f9e95cfd370318a2231d0845981 (patch)
treeeece62f43b0b958958bfdfba647fcc35f9cff490 /build-aux
parent7889394e059a2362d3227fb02256de4afd46129c (diff)
hydra: Add dummy root file system declaration.
* build-aux/hydra/demo-os.scm (file-systems): Add "/" file system.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/hydra/demo-os.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/build-aux/hydra/demo-os.scm b/build-aux/hydra/demo-os.scm
index e36a9ca17d..32c6fa3abf 100644
--- a/build-aux/hydra/demo-os.scm
+++ b/build-aux/hydra/demo-os.scm
@@ -44,9 +44,13 @@
(timezone "Europe/Paris")
(locale "en_US.UTF-8")
(file-systems
- ;; We don't provide a file system for /, but that's OK because the VM build
+ ;; We provide a dummy file system for /, but that's OK because the VM build
;; code will automatically declare the / file system for us.
- (list ;; %fuse-control-file-system ; needs fuse.ko
+ (list (file-system
+ (mount-point "/")
+ (device "dummy")
+ (type "dummy"))
+ ;; %fuse-control-file-system ; needs fuse.ko
%binary-format-file-system))
(users (list (user-account
(name "guest")