From 3354e41c1e83a38a15df4513373ca6aa2886af1a Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Fri, 3 Dec 2021 14:25:57 +0100 Subject: [PATCH] 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 --- gnu/system/vm.scm | 1 - 1 file changed, 1 deletion(-) 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 @@ (define (virtfs-option 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)))