diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-12-13 17:18:05 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-12-13 17:18:05 +0100 |
commit | 5c5e7bdafd38e2bed2c4e0b0f64fefb16855aded (patch) | |
tree | 4298efc56399d58a7401065d30556d3e7418cbd6 /gnu/system/vm.scm | |
parent | b2bd7c253a9798630e983ac801e28aeb6b01cb1f (diff) | |
download | gnu-guix-5c5e7bdafd38e2bed2c4e0b0f64fefb16855aded.tar gnu-guix-5c5e7bdafd38e2bed2c4e0b0f64fefb16855aded.tar.gz |
vm: Use QEMU's standard VGA emulation by default.
* gnu/system/vm.scm (common-qemu-options): Add "-vga std".
Diffstat (limited to 'gnu/system/vm.scm')
-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 33ca396eb9..4374256530 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -472,7 +472,7 @@ with '-virtfs' options for the host file systems listed in SHARED-FS." " -enable-kvm -no-reboot -net nic,model=virtio \ " #$@(map virtfs-option shared-fs) " \ -net user \ - -serial stdio \ + -serial stdio -vga std \ -drive file=" #$image ",if=virtio,cache=writeback,werror=report,readonly \ -m 256")) |