From 76d4a7c84a97a5555b1962ddb9fc694b7e1f6ba8 Mon Sep 17 00:00:00 2001 From: Mathew McBride Date: Tue, 15 Aug 2023 03:47:23 +0000 Subject: [PATCH] kernel: default ARM_PMU on for armsr/armv8 CONFIG_ARM_PMU (Arm Performance Monitor Unit) is a requirement to use KVM (virtualization) from Linux 5.11+, as the virtualised guest has virtualized PMU access. Signed-off-by: Mathew McBride --- config/Config-kernel.in | 1 + 1 file changed, 1 insertion(+) diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 0c9e00d11f..a1209d82f3 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -47,6 +47,7 @@ config KERNEL_MIPS_FP_SUPPORT config KERNEL_ARM_PMU bool + default y if TARGET_armsr_armv8 depends on (arm || aarch64) config KERNEL_X86_VSYSCALL_EMULATION -- 2.30.2