2021-01-05 21:13:38 +01:00
|
|
|
References: bsc#1180047
|
|
|
|
Xen PV doesn't support uefi or BIOS booting
|
|
|
|
|
2021-01-25 19:36:28 +01:00
|
|
|
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
|
2021-01-05 21:13:38 +01:00
|
|
|
@@ -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
|
2021-01-25 19:36:28 +01:00
|
|
|
+ (self.conn.is_xen() and not self.vm.is_xenpv())) and
|
2021-01-05 21:13:38 +01:00
|
|
|
domcaps.arch_can_uefi())
|
|
|
|
uiutil.set_grid_row_visible(
|
|
|
|
self.widget("overview-firmware-title"), show_firmware)
|