28 Dec
2025
28 Dec
'25
5:51 p.m.
ISA controller is not used by the ARM guests. Signed-off-by: Roman Bogorodskiy <bogorodskiy@gmail.com> --- 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