diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-04-09 12:14:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-04-09 14:01:31 +0200 |
commit | 4d9a80ba759cc69bba6806e0417ded4068628751 (patch) | |
tree | 89b40209b88d79ee9bcefcc7affaae1f52db823a /gnu | |
parent | f200b03e06b6561a356231e6c035f6f220c28a88 (diff) | |
download | guix-4d9a80ba759cc69bba6806e0417ded4068628751.tar guix-4d9a80ba759cc69bba6806e0417ded4068628751.tar.gz |
gnu: linux-initrd: Default initrd has no network mounts.
* gnu/system/linux-initrd.scm (gnu-system-initrd): Add #:mounts
argument.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/system/linux-initrd.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 9520473d01..42ca29cb58 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -243,6 +243,7 @@ to it are lost." (define (gnu-system-initrd) "Initrd for the GNU system itself, with nothing QEMU-specific." - (qemu-initrd #:guile-modules-in-chroot? #f)) + (qemu-initrd #:guile-modules-in-chroot? #f + #:mounts '())) ;;; linux-initrd.scm ends here |