diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2018-02-05 22:40:56 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-02-10 20:16:39 +0100 |
commit | fc166931fae87be0f98ea9e0c74b0f33ddd11113 (patch) | |
tree | 068bf2571ca77e2c3be7c48d59403329b9684787 /config | |
parent | e387a1b4e4f57ec6e436990bca3de5de8d840d80 (diff) | |
download | upstream-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')
-rw-r--r-- | config/Config-kernel.in | 4 |
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" |