37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From cc52485e148de49bfee0b1200b3c6d0bc633e607 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <cc52485e148de49bfee0b1200b3c6d0bc633e607@dist-git>
|
|
From: Pavel Hrdina <phrdina@redhat.com>
|
|
Date: Thu, 3 Oct 2019 15:35:59 -0400
|
|
Subject: [PATCH] guest: Drop set_capabilities_defaults call from get_uefi_path
|
|
|
|
From: Cole Robinson <crobinso@redhat.com>
|
|
|
|
Callers need to handle this themselves, and all callers do AFAICT
|
|
|
|
Signed-off-by: Cole Robinson <crobinso@redhat.com>
|
|
(cherry picked from commit 534f2e03d077306af4309babd30d92ea3ec4e8c0)
|
|
|
|
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1753644
|
|
|
|
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
|
|
---
|
|
virtinst/guest.py | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/virtinst/guest.py b/virtinst/guest.py
|
|
index 41357644..7559d843 100644
|
|
--- a/virtinst/guest.py
|
|
+++ b/virtinst/guest.py
|
|
@@ -541,8 +541,6 @@ class Guest(XMLBuilder):
|
|
"""
|
|
If UEFI firmware path is found, return it, otherwise raise an error
|
|
"""
|
|
- if not self.os.arch:
|
|
- self.set_capabilities_defaults()
|
|
domcaps = self.lookup_domcaps()
|
|
|
|
if not domcaps.supports_uefi_xml():
|
|
--
|
|
2.23.0
|
|
|