guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 2/6] vm: Honor 'QEMU_FLAGS' and 'QEMU_NET_FLAGS'.


From: David Craven
Subject: [PATCH 2/6] vm: Honor 'QEMU_FLAGS' and 'QEMU_NET_FLAGS'.
Date: Sat, 9 Jul 2016 14:50:07 +0200

* gnu/system/vm.scm (common-qemu-options): Add 'QEMU_FLAGS' and 
'QEMU_NET_FLAGS'.
* gnu/system/vm.scm (common-qemu-options): Enable virtio gpu by default.
---
 gnu/system/vm.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index 676e89d..5252d02 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -468,11 +468,11 @@ 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 \
-  -vga std \
+  -net user,$QEMU_NET_FLAGS \
+  -vga virtio \
   -drive file=" #$image
   ",if=virtio,cache=writeback,werror=report,readonly \
-  -m 256"))
+  -m 256 $QEMU_FLAGS"))
 
 (define* (system-qemu-image/shared-store-script os
                                                 #:key
-- 
2.9.0



reply via email to

[Prev in Thread] Current Thread [Next in Thread]