ISA controller is not used by the ARM guests.
Signed-off-by: Roman Bogorodskiy <[email protected]>
---
src/bhyve/bhyve_domain.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/bhyve/bhyve_domain.c b/src/bhyve/bhyve_domain.c
index b9f9761b43..0c33a67ca6 100644
--- a/src/bhyve/bhyve_domain.c
+++ b/src/bhyve/bhyve_domain.c
@@ -62,6 +62,9 @@ virDomainXMLPrivateDataCallbacks
virBhyveDriverPrivateDataCallbacks = {
static bool
bhyveDomainDefNeedsISAController(virDomainDef *def)
{
+ if (!ARCH_IS_X86(def->os.arch))
+ return false;
+
if (def->os.bootloader == NULL && def->os.loader)
return true;
--
2.51.2