From: Hauke Mehrtens Date: Mon, 5 Feb 2018 21:40:56 +0000 (+0100) Subject: config: fix ARM64 dependency check X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fstintel.git;a=commitdiff_plain;h=fc166931fae87be0f98ea9e0c74b0f33ddd11113 config: fix ARM64 dependency check The ARM64 CPUs use aarch64 config symbol, fix the depends lines. Signed-off-by: Hauke Mehrtens --- diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 15bc483418..0cbe5e8351 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -50,12 +50,12 @@ config KERNEL_MIPS_FPU_EMULATOR config KERNEL_ARM_PMU bool default n - depends on (arm || arm64) + depends on (arm || aarch64) config KERNEL_PERF_EVENTS bool "Compile the kernel with performance events and counters" default n - select KERNEL_ARM_PMU if (arm || arm64) + select KERNEL_ARM_PMU if (arm || aarch64) config KERNEL_PROFILING bool "Compile the kernel with profiling enabled"