diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-23 22:35:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-23 22:37:24 +0200 |
commit | 112440a7b832a3841bf8e8139975b43b78f8a6ab (patch) | |
tree | df6b209d99dd05eb2c6435c53dc48349ed0320b0 /gnu/system/linux-initrd.scm | |
parent | a68d976b666a5097585cf221f4f8d793f90f3464 (diff) | |
download | patches-112440a7b832a3841bf8e8139975b43b78f8a6ab.tar patches-112440a7b832a3841bf8e8139975b43b78f8a6ab.tar.gz |
vm: Disable QEMU networking in the disk image initrd.
* gnu/system/linux-initrd.scm (qemu-initrd): Add #:qemu-networking?
parameter and honor it.
* gnu/system/vm.scm (system-disk-image): Pass #:qemu-networking #f.
Diffstat (limited to 'gnu/system/linux-initrd.scm')
-rw-r--r-- | gnu/system/linux-initrd.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 03199e0c39..b80ff10f1e 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -204,12 +204,16 @@ initrd code." (define* (qemu-initrd file-systems #:key guile-modules-in-chroot? + (qemu-networking? #t) volatile-root?) "Return a monadic derivation that builds an initrd for use in a QEMU guest where the store is shared with the host. FILE-SYSTEMS is a list of file-systems to be mounted by the initrd, possibly in addition to the root file system specified on the kernel command line via '--root'. +When QEMU-NETWORKING? is true, set up networking with the standard QEMU +parameters. + When VOLATILE-ROOT? is true, the root file system is writable but any changes to it are lost. @@ -267,7 +271,7 @@ exception and backtrace!)." (boot-system #:mounts '#$(map file-system->spec file-systems) #:linux-modules '#$linux-modules - #:qemu-guest-networking? #t + #:qemu-guest-networking? #$qemu-networking? #:guile-modules-in-chroot? '#$guile-modules-in-chroot? #:volatile-root? '#$volatile-root?)) #:name "qemu-initrd" |