summaryrefslogtreecommitdiff
path: root/libre/virt-manager/libre.patch
diff options
context:
space:
mode:
Diffstat (limited to 'libre/virt-manager/libre.patch')
-rw-r--r--libre/virt-manager/libre.patch34
1 files changed, 32 insertions, 2 deletions
diff --git a/libre/virt-manager/libre.patch b/libre/virt-manager/libre.patch
index d7f475dc3..fdb788101 100644
--- a/libre/virt-manager/libre.patch
+++ b/libre/virt-manager/libre.patch
@@ -423,7 +423,7 @@ index ef66ba4..da077df 100644
self.askpass_package = _split_list(_get_param("askpass_packages", ""))
self.libvirt_packages = _split_list(_get_param("libvirt_packages", ""))
diff --git a/virtinst/guest.py b/virtinst/guest.py
-index 6a42536..985a73e 100644
+index 6a42536..a444ab9 100644
--- a/virtinst/guest.py
+++ b/virtinst/guest.py
@@ -608,7 +608,6 @@ class Guest(XMLBuilder):
@@ -465,7 +465,17 @@ index 6a42536..985a73e 100644
def _hv_supported(self):
-@@ -847,8 +841,7 @@ class Guest(XMLBuilder):
+@@ -822,8 +816,7 @@ class Guest(XMLBuilder):
+ return
+
+ default = True
+- if (self._os_object.need_old_xen_disable_acpi() and
+- not self.conn.check_support(support.SUPPORT_CONN_CAN_ACPI)):
++ if (not self.conn.check_support(support.SUPPORT_CONN_CAN_ACPI)):
+ default = False
+
+ if self.features.acpi == "default":
+@@ -847,8 +840,7 @@ class Guest(XMLBuilder):
self.conn.check_support(self.conn.SUPPORT_CONN_VMPORT)):
self.features.vmport = False
@@ -475,6 +485,26 @@ index 6a42536..985a73e 100644
self.conn.check_support(self.conn.SUPPORT_CONN_HYPERV_VAPIC)):
if self.features.hyperv_relaxed is None:
self.features.hyperv_relaxed = True
+@@ -948,9 +940,7 @@ class Guest(XMLBuilder):
+ return True
+
+ if (self.os.is_arm_vexpress() and
+- self.os.dtb and
+- self._os_object.supports_virtiommio() and
+- self.conn.check_support(support.SUPPORT_CONN_VIRTIO_MMIO)):
++ self.os.dtb):
+ return True
+
+ return False
+@@ -1142,7 +1132,7 @@ class Guest(XMLBuilder):
+ self._add_spice_usbredir()
+
+ video_model = self._os_object.default_videomodel(self)
+- if video_model == 'vmvga' and self.stable_defaults(force=True):
++ if self.stable_defaults(force=True):
+ video_model = 'vga'
+
+ for video in self.get_devices("video"):
diff --git a/virtinst/initrdinject.py b/virtinst/initrdinject.py
index eb5f419..726264a 100644
--- a/virtinst/initrdinject.py