gnu: linux-initrd: Default initrd has no network mounts.

* gnu/system/linux-initrd.scm (gnu-system-initrd): Add #:mounts
  argument.
This commit is contained in:
Ludovic Courtès 2014-04-09 12:14:11 +02:00
parent f200b03e06
commit 4d9a80ba75

View file

@ -243,6 +243,7 @@ (define linux-modules
(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