aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/Kconfig1
-rw-r--r--lib/Kconfig.debug16
2 files changed, 9 insertions, 8 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 862adb9bf0d4..73f7fe8fd4d1 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -27,6 +27,7 @@ config X86
27 select HAVE_IOREMAP_PROT 27 select HAVE_IOREMAP_PROT
28 select HAVE_KPROBES 28 select HAVE_KPROBES
29 select ARCH_WANT_OPTIONAL_GPIOLIB 29 select ARCH_WANT_OPTIONAL_GPIOLIB
30 select ARCH_WANT_FRAME_POINTERS
30 select HAVE_KRETPROBES 31 select HAVE_KRETPROBES
31 select HAVE_FTRACE_MCOUNT_RECORD 32 select HAVE_FTRACE_MCOUNT_RECORD
32 select HAVE_DYNAMIC_FTRACE 33 select HAVE_DYNAMIC_FTRACE
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 2e75478e9c69..2d0f14490174 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -566,14 +566,14 @@ config DEBUG_NOTIFIERS
566config FRAME_POINTER 566config FRAME_POINTER
567 bool "Compile the kernel with frame pointers" 567 bool "Compile the kernel with frame pointers"
568 depends on DEBUG_KERNEL && \ 568 depends on DEBUG_KERNEL && \
569 (X86 || CRIS || M68K || M68KNOMMU || FRV || UML || S390 || \ 569 (CRIS || M68K || M68KNOMMU || FRV || UML || S390 || \
570 AVR32 || SUPERH || BLACKFIN || MN10300) 570 AVR32 || SUPERH || BLACKFIN || MN10300) || \
571 default y if DEBUG_INFO && UML 571 ARCH_WANT_FRAME_POINTERS
572 help 572 default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS
573 If you say Y here the resulting kernel image will be slightly larger 573 help
574 and slower, but it might give very useful debugging information on 574 If you say Y here the resulting kernel image will be slightly
575 some architectures or if you use external debuggers. 575 larger and slower, but it gives very useful debugging information
576 If you don't debug the kernel, you can say N. 576 in case of kernel bugs. (precise oopses/stacktraces/warnings)
577 577
578config BOOT_PRINTK_DELAY 578config BOOT_PRINTK_DELAY
579 bool "Delay each boot printk message by N milliseconds" 579 bool "Delay each boot printk message by N milliseconds"