[openwrt/openwrt] config: fix ARM64 dependency check
LEDE Commits
lede-commits at lists.infradead.org
Sat Feb 10 11:31:36 PST 2018
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/fc166931fae87be0f98ea9e0c74b0f33ddd11113
commit fc166931fae87be0f98ea9e0c74b0f33ddd11113
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Mon Feb 5 22:40:56 2018 +0100
config: fix ARM64 dependency check
The ARM64 CPUs use aarch64 config symbol, fix the depends lines.
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
config/Config-kernel.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/config/Config-kernel.in b/config/Config-kernel.in
index 15bc483..0cbe5e8 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"
More information about the lede-commits
mailing list