diff --git a/virt-manager.changes b/virt-manager.changes index 7c896b14..f04dc41e 100644 --- a/virt-manager.changes +++ b/virt-manager.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Mon Jan 25 11:32:34 MST 2021 - carnold@suse.com + +- bsc#1181350 - [Build 20210122] openQA test fails in virt_install + on aarch64 + virtman-show-no-firmware-for-xenpv.patch + ------------------------------------------------------------------- Thu Jan 7 12:48:11 MST 2021 - carnold@suse.com diff --git a/virtman-show-no-firmware-for-xenpv.patch b/virtman-show-no-firmware-for-xenpv.patch index 8cecd8fd..69a47308 100644 --- a/virtman-show-no-firmware-for-xenpv.patch +++ b/virtman-show-no-firmware-for-xenpv.patch @@ -1,14 +1,16 @@ References: bsc#1180047 Xen PV doesn't support uefi or BIOS booting ---- virt-manager-3.2.0/virtManager/details/details.py.orig 2021-01-05 13:02:58.040792391 -0700 -+++ virt-manager-3.2.0/virtManager/details/details.py 2021-01-05 13:07:51.212799377 -0700 +Index: virt-manager-3.2.0/virtManager/details/details.py +=================================================================== +--- virt-manager-3.2.0.orig/virtManager/details/details.py ++++ virt-manager-3.2.0/virtManager/details/details.py @@ -696,7 +696,7 @@ class vmmDetails(vmmGObjectUI): not self.is_customize_dialog) show_firmware = ((self.conn.is_qemu() or self.conn.is_test() or - self.conn.is_xen()) and -+ self.conn.is_xen() and not self.vm.is_xenpv()) and ++ (self.conn.is_xen() and not self.vm.is_xenpv())) and domcaps.arch_can_uefi()) uiutil.set_grid_row_visible( self.widget("overview-firmware-title"), show_firmware)