From 12bb497ce2fce5effab8c0cb8aefa47d6b9b8ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 24 Apr 2026 09:41:57 +0200 Subject: [PATCH] runtime-rs: Set QEMU as the default hypervisor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dragonball is only supported on x86_64 and aarch64, so using it as the default hypervisor means architectures like s390x, powerpc64le, and riscv64gc have no working default. Switch to QEMU, which is available across all supported architectures. Dragonball is still compiled as a feature on x86_64 and aarch64 via USE_BUILTIN_DB, and users can still override the default with HYPERVISOR=dragonball. Signed-off-by: Fabiano FidĂȘncio --- src/runtime-rs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime-rs/Makefile b/src/runtime-rs/Makefile index cfd91a4f82..d587fa0d91 100644 --- a/src/runtime-rs/Makefile +++ b/src/runtime-rs/Makefile @@ -100,7 +100,7 @@ else Specify "USE_BUILTIN_DB=true" to force enable.) endif -HYPERVISOR ?= $(HYPERVISOR_DB) +HYPERVISOR ?= $(HYPERVISOR_QEMU) ##VAR HYPERVISOR= List of hypervisors this build system can generate configuration for. HYPERVISORS := $(HYPERVISOR_DB) $(HYPERVISOR_FC) $(HYPERVISOR_QEMU) $(HYPERVISOR_CLH) $(HYPERVISOR_REMOTE)