From 38d565587d9d4c7bc2532b73a4bc01b1189b8588 Mon Sep 17 00:00:00 2001 From: Michalis Pappas Date: Mon, 14 Aug 2023 16:07:15 +0200 Subject: [PATCH] plat/kvm/arm: Fix default choice in arm64 VMM menu Fix the default selection of the VMM in Config.uk. Kconfig requires that the default is defined as an attribute of the `choice` option rather than the contained item. Signed-off-by: Michalis Pappas Reviewed-by: Stefan Jumarea Reviewed-by: Maria Sfiraiala Approved-by: Razvan Deaconescu Tested-by: Unikraft CI GitHub-Closes: #1053 --- plat/kvm/Config.uk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plat/kvm/Config.uk b/plat/kvm/Config.uk index 097536458..d7c30151b 100644 --- a/plat/kvm/Config.uk +++ b/plat/kvm/Config.uk @@ -16,6 +16,7 @@ if (PLAT_KVM) choice prompt "Boot protocol" + default KVM_BOOT_PROTO_LXBOOT config KVM_BOOT_PROTO_MULTIBOOT bool "Multiboot" @@ -25,7 +26,6 @@ config KVM_BOOT_PROTO_MULTIBOOT config KVM_BOOT_PROTO_LXBOOT bool "Lxboot" - default y depends on KVM_VMM_FIRECRACKER || (KVM_VMM_QEMU && ARCH_ARM_64) help Linux 64-bit Boot Protocol -- 2.39.5