849b03f9b9
sles15sp2 PV guest virtinst-pvgrub2-bootloader.patch virtinst-change-location-for-grub_xen.patch - Upstream bug fixes (bsc#1027942) 9465da41-urlfetcher-Deal-with-file-in-_LocalURLFetcher.patch 651e5b6d-devices-video-Simplify-model-hvm-check.patch d9736db9-addhardware-Add-bochs-display-to-the-video-list.patch 8f4c53ea-video-Prefer-bochs-when-its-supported..patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=484
23 lines
815 B
Diff
23 lines
815 B
Diff
Subject: addhardware: Add "bochs" display to the video list
|
|
From: Fabiano Fidêncio fidencio@redhat.com Wed Oct 2 10:45:28 2019 +0200
|
|
Date: Fri Oct 4 11:17:14 2019 -0400:
|
|
Git: d9736db9d983d01c03929de226365dbf56a791a3
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1753644
|
|
|
|
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
|
|
|
|
diff --git a/virtManager/addhardware.py b/virtManager/addhardware.py
|
|
index 842eada1..881f0e02 100644
|
|
--- a/virtManager/addhardware.py
|
|
+++ b/virtManager/addhardware.py
|
|
@@ -663,7 +663,7 @@ class vmmAddHardware(vmmGObjectUI):
|
|
if guest.conn.is_xen():
|
|
return ["xen", "vga"]
|
|
if guest.conn.is_qemu() or guest.conn.is_test():
|
|
- return ["vga", "qxl", "virtio"]
|
|
+ return ["vga", "bochs", "qxl", "virtio"]
|
|
return []
|
|
|
|
@staticmethod
|