From 9afdceef4eadbca66643b1aa2fd4e50342aee04c Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Tue, 7 Jun 2016 10:22:32 -0400 Subject: [PATCH] domcaps: Add some generic uefi<->arch catchall regexs Not strictly required, but may help new distros make packaging decisions that will 'just work' --- virtinst/domcapabilities.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/virtinst/domcapabilities.py b/virtinst/domcapabilities.py index e99582532..9a52315df 100644 --- a/virtinst/domcapabilities.py +++ b/virtinst/domcapabilities.py @@ -102,10 +102,12 @@ class DomainCapabilities(XMLBuilder): ".*OVMF_CODE\.fd", # RHEL ".*ovmf-x64/OVMF.*\.fd", # gerd's firmware repo ".*ovmf-x86_64-.*", # SUSE + ".*ovmf.*", ".*OVMF.*", # generic attempt at a catchall ], "aarch64": [ ".*AAVMF_CODE\.fd", # RHEL ".*aarch64/QEMU_EFI.*", # gerd's firmware repo + ".*aarch64.*", # generic attempt at a catchall ], }