diff options
author | Daniel Golle <daniel@makrotopia.org> | 2016-06-21 12:30:06 +0200 |
---|---|---|
committer | Zoltan HERPAI <wigyori@uid0.hu> | 2016-06-21 12:30:06 +0200 |
commit | 3b251c978351b424f8efb79967e8b0950613565a (patch) | |
tree | 059f91b54898eb97a84a20f8b7c6b54f1bc906f3 | |
parent | 1e284e87c99079a6b1bd57aee3adae2dae8b6743 (diff) | |
download | master-187ad058-3b251c978351b424f8efb79967e8b0950613565a.tar.gz master-187ad058-3b251c978351b424f8efb79967e8b0950613565a.tar.bz2 master-187ad058-3b251c978351b424f8efb79967e8b0950613565a.zip |
kernel: add missing symbol
Add missing symbol When building kernel with profiling enabled and ARM
or ARM64 targets.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
-rw-r--r-- | config/Config-kernel.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 8ea11ed4d1..4c191f0955 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -42,9 +42,15 @@ config KERNEL_DEBUG_FS write to these files. Many common debugging facilities, such as ftrace, require the existence of debugfs. +config KERNEL_ARM_PMU + bool + default n + depends on (arm || arm64) + config KERNEL_PERF_EVENTS bool default n + select KERNEL_ARM_PMU if (arm || arm64) config KERNEL_PROFILING bool "Compile the kernel with profiling enabled" |