diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-01-15 09:23:51 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-01-15 09:23:51 -0800 |
commit | 38ad9aebe70dc72df08851bbd1620d89329129ba (patch) | |
tree | 076d29952ab7d8c6caca21db8b04397d616a68b6 /arch/arm/Kconfig | |
parent | 3568834e813e0dd7547035b3148b2f2a2b48ee4e (diff) | |
download | blackbird-obmc-linux-38ad9aebe70dc72df08851bbd1620d89329129ba.tar.gz blackbird-obmc-linux-38ad9aebe70dc72df08851bbd1620d89329129ba.zip |
Fix ARM profiling/instrumentation configuration
Commit 09cadedbdc01f1a4bea1f427d4fb4642eaa19da9 ("Combine
instrumentation menus in kernel/Kconfig.instrumentation") broke ARM
profiling support, since ARM has some extra Kconfig options and doesn't
just use the common OPROFILE/KPROBES config options.
Rather than just revert the thing outright, or add ARM-specific
knowledge to the generic Kconfig.instrumentation file (where the only
and whole point was to be generic, not too architecture-specific), this
just makes ARM not use the generic version, since it doesn't suit it.
So create an arm-specific version of Kconfig.instrumentation instead,
and use that.
Acked-by: Ingo Molnar <mingo@elte.hu>
Acked-by: Russell King <rmk+lkml@arm.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index c4de2d4664d7..3a75a0b2bebb 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1076,7 +1076,7 @@ endmenu source "fs/Kconfig" -source "kernel/Kconfig.instrumentation" +source "arch/arm/Kconfig.instrumentation" source "arch/arm/Kconfig.debug" |