68b092e4b8
11a887ec-cli-disk-Add-driver.metadata_cache-options.patch 7295ebfb-tests-cli-Fix-test-output-after-previous-commit.patch 58f5e36d-fsdetails-Fix-an-error-with-source.socket-of-virtiofs.patch c22a876e-tests-Add-a-compat-check-for-linux2020-in-amd-sev-test-case.patch fbdf0516-cli-cpu-Add-maxphysaddr.mode-bits-options.patch b0d05167-cloner-Sync-uuid-and-sysinfo-system-uuid.patch 999ccb85-virt-install-unattended-and-cloud-init-conflict.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=579
16 lines
649 B
Diff
16 lines
649 B
Diff
References: bsc#1180069
|
|
|
|
Index: virt-manager-4.1.0/virtinst/guest.py
|
|
===================================================================
|
|
--- virt-manager-4.1.0.orig/virtinst/guest.py
|
|
+++ virt-manager-4.1.0/virtinst/guest.py
|
|
@@ -706,6 +706,8 @@ class Guest(XMLBuilder):
|
|
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."))
|
|
|
|
def refresh_machine_type(self):
|
|
"""
|