diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2009-02-26 21:38:56 +0200 |
---|---|---|
committer | Vegard Nossum <vegard.nossum@gmail.com> | 2009-06-15 15:49:17 +0200 |
commit | 0a4af3b09309049d8560f8ad558a1337bb4f7f32 (patch) | |
tree | 7b3f627f94a82248146bc19bd3bb4f641b897526 /arch/x86/Kconfig | |
parent | 7d46d9e6dbffe8780aa8430a63543d3f7ba92860 (diff) | |
download | lwn-0a4af3b09309049d8560f8ad558a1337bb4f7f32.tar.gz lwn-0a4af3b09309049d8560f8ad558a1337bb4f7f32.zip |
kmemcheck: make kconfig accessible for other architectures
The Kconfig options of kmemcheck are hidden under arch/x86 which makes porting
to other architectures harder. To fix that, move the Kconfig bits to
lib/Kconfig.kmemcheck and introduce a CONFIG_HAVE_ARCH_KMEMCHECK config option
that architectures can define.
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
[rebased for mainline inclusion]
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 68f5578fe38e..711b214684ef 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -46,6 +46,7 @@ config X86 select HAVE_KERNEL_GZIP select HAVE_KERNEL_BZIP2 select HAVE_KERNEL_LZMA + select HAVE_ARCH_KMEMCHECK config OUTPUT_FORMAT string |