aboutsummaryrefslogtreecommitdiffstats
path: root/config/Config-kernel.in
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2018-02-05 22:40:56 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2018-02-10 20:16:39 +0100
commitfc166931fae87be0f98ea9e0c74b0f33ddd11113 (patch)
tree068bf2571ca77e2c3be7c48d59403329b9684787 /config/Config-kernel.in
parente387a1b4e4f57ec6e436990bca3de5de8d840d80 (diff)
downloadupstream-fc166931fae87be0f98ea9e0c74b0f33ddd11113.tar.gz
upstream-fc166931fae87be0f98ea9e0c74b0f33ddd11113.tar.bz2
upstream-fc166931fae87be0f98ea9e0c74b0f33ddd11113.zip
config: fix ARM64 dependency check
The ARM64 CPUs use aarch64 config symbol, fix the depends lines. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'config/Config-kernel.in')
-rw-r--r--config/Config-kernel.in4
1 files changed, 2 insertions, 2 deletions
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"