2021-01-07 20:59:53 +01:00
|
|
|
References: bsc#1180069
|
|
|
|
|
2022-03-03 05:17:21 +01:00
|
|
|
Index: virt-manager-4.0.0/virtinst/guest.py
|
2021-01-07 20:59:53 +01:00
|
|
|
===================================================================
|
2022-03-03 05:17:21 +01:00
|
|
|
--- virt-manager-4.0.0.orig/virtinst/guest.py
|
|
|
|
+++ virt-manager-4.0.0/virtinst/guest.py
|
2022-08-04 21:46:46 +02:00
|
|
|
@@ -689,6 +689,8 @@ class Guest(XMLBuilder):
|
2021-01-07 20:59:53 +01:00
|
|
|
self.type != "kvm"):
|
|
|
|
log.warning( # pragma: no cover
|
|
|
|
"KVM acceleration not available, using '%s'", self.type)
|
|
|
|
+ if self.os.is_xenpv() and self.os.smbios_mode is not None:
|
|
|
|
+ raise RuntimeError(_("The --sysinfo flag (smbios) is not supported for Xen PV guests."))
|
|
|
|
|
2022-03-03 05:17:21 +01:00
|
|
|
def refresh_machine_type(self):
|
2021-01-07 20:59:53 +01:00
|
|
|
"""
|