domcaps: Add some generic uefi<->arch catchall regexs

Not strictly required, but may help new distros make packaging
decisions that will 'just work'
This commit is contained in:
Cole Robinson 2016-06-07 10:22:32 -04:00
parent efd1d2dd07
commit 9afdceef4e

View File

@ -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
],
}