diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-12-03 14:25:57 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-12-03 14:25:57 +0100 |
commit | 3354e41c1e83a38a15df4513373ca6aa2886af1a (patch) | |
tree | 91212089fcfe08dab2bdb7b2369c519daa2fef11 /gnu/system | |
parent | b42bfbdfe55eea56234a91c33ef12b9fe198766d (diff) |
system: vm: Remove the vga argument.
* gnu/system/vm.scm (common-qemu-options): Remove the "-vga std" argument that
is the default since QEMU 2.2.
Suggested-by: Attila Lendvai <attila@lendvai.name>
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/vm.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index 0a95302584..f1541cf30c 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -712,7 +712,6 @@ with '-virtfs' options for the host file systems listed in SHARED-FS." "-device" "virtio-rng-pci,rng=guixsd-vm-rng" #$@(map virtfs-option shared-fs) - "-vga std" (format #f "-drive file=~a,if=virtio,cache=writeback,werror=report,readonly=on" #$image))) |