diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-04 23:31:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-04 23:35:55 +0200 |
commit | 957afcae3cded622f4260385f69b40dbdcaade9f (patch) | |
tree | 55ec9609a5fb2ffd5704121fb3e2f82cfc3876a6 /gnu/system | |
parent | b2fef041fcfbb63d7901c25647373aeda56b026e (diff) | |
download | guix-957afcae3cded622f4260385f69b40dbdcaade9f.tar guix-957afcae3cded622f4260385f69b40dbdcaade9f.tar.gz |
Add (gnu tests) and (gnu build marionette).
* gnu/build/marionette.scm, gnu/tests.scm: New files.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add them.
* gnu/system/vm.scm (common-qemu-options): Remove '-serial stdio'.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/vm.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 2fbef6a3fc..e6ce42467a 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -468,7 +468,7 @@ with '-virtfs' options for the host file systems listed in SHARED-FS." " -no-reboot -net nic,model=virtio \ " #$@(map virtfs-option shared-fs) " \ -net user \ - -serial stdio -vga std \ + -vga std \ -drive file=" #$image ",if=virtio,cache=writeback,werror=report,readonly \ -m 256")) |