- bsc#1181350 - [Build 20210122] openQA test fails in virt_install

on aarch64
  virtman-show-no-firmware-for-xenpv.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=538
This commit is contained in:
Charles Arnold 2021-01-25 18:36:28 +00:00 committed by Git OBS Bridge
parent 3a2fcd09c6
commit 599036ed43
2 changed files with 12 additions and 3 deletions

View File

@ -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

View File

@ -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)