aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Kconfig.debug
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2012-12-05 06:34:13 -0500
committerJames Hogan <james.hogan@imgtec.com>2013-03-02 15:09:53 -0500
commit79f83c02944ccb3dffbc5852e63e966ea34ed63e (patch)
treec23ee5762f2fd7f3d94c7245cf72f8bbb42c5f7e /lib/Kconfig.debug
parent9ca52ed979b6b45ae480a5fc56d593efb3bf16e8 (diff)
Kconfig.debug: add METAG to dependency lists
Add [!]METAG to a couple of Kconfig dependencies in lib/Kconfig.debug. Don't allow stack utilization instrumentation on metag, and allow building with frame pointers. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: "Paul E. McKenney" <paul.mckenney@linaro.org> Cc: Akinobu Mita <akinobu.mita@gmail.com> Cc: Michel Lespinasse <walken@google.com> Cc: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'lib/Kconfig.debug')
-rw-r--r--lib/Kconfig.debug4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 67604e599384..dddee00b4ac5 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -730,7 +730,7 @@ config STACKTRACE
730 730
731config DEBUG_STACK_USAGE 731config DEBUG_STACK_USAGE
732 bool "Stack utilization instrumentation" 732 bool "Stack utilization instrumentation"
733 depends on DEBUG_KERNEL && !IA64 && !PARISC 733 depends on DEBUG_KERNEL && !IA64 && !PARISC && !METAG
734 help 734 help
735 Enables the display of the minimum amount of free stack which each 735 Enables the display of the minimum amount of free stack which each
736 task has ever had available in the sysrq-T and sysrq-P debug output. 736 task has ever had available in the sysrq-T and sysrq-P debug output.
@@ -911,7 +911,7 @@ config FRAME_POINTER
911 bool "Compile the kernel with frame pointers" 911 bool "Compile the kernel with frame pointers"
912 depends on DEBUG_KERNEL && \ 912 depends on DEBUG_KERNEL && \
913 (CRIS || M68K || FRV || UML || \ 913 (CRIS || M68K || FRV || UML || \
914 AVR32 || SUPERH || BLACKFIN || MN10300) || \ 914 AVR32 || SUPERH || BLACKFIN || MN10300 || METAG) || \
915 ARCH_WANT_FRAME_POINTERS 915 ARCH_WANT_FRAME_POINTERS
916 default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS 916 default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS
917 help 917 help