Currently, domain capabilities reporting is limited to X86.
Enable it for ARM as well.
Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
---
src/bhyve/bhyve_driver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bhyve/bhyve_driver.c b/src/bhyve/bhyve_driver.c
index 4b1ca80fc6..cbcdc996dc 100644
--- a/src/bhyve/bhyve_driver.c
+++ b/src/bhyve/bhyve_driver.c
@@ -1621,7 +1621,7 @@ bhyveConnectGetDomainCapabilities(virConnectPtr conn,
goto cleanup;
}
- if (!ARCH_IS_X86(arch)) {
+ if (!ARCH_IS_X86(arch) && !ARCH_IS_ARM(arch)) {
virReportError(VIR_ERR_NO_SUPPORT,
_("unsupported architecture: %1$s"),
virArchToString(arch));
--
2.51.2