Commit 79f83c02 authored by James Hogan's avatar James Hogan
Browse files

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: default avatarJames 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>
parent 9ca52ed9
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -730,7 +730,7 @@ config STACKTRACE


config DEBUG_STACK_USAGE
config DEBUG_STACK_USAGE
	bool "Stack utilization instrumentation"
	bool "Stack utilization instrumentation"
	depends on DEBUG_KERNEL && !IA64 && !PARISC
	depends on DEBUG_KERNEL && !IA64 && !PARISC && !METAG
	help
	help
	  Enables the display of the minimum amount of free stack which each
	  Enables the display of the minimum amount of free stack which each
	  task has ever had available in the sysrq-T and sysrq-P debug output.
	  task has ever had available in the sysrq-T and sysrq-P debug output.
@@ -911,7 +911,7 @@ config FRAME_POINTER
	bool "Compile the kernel with frame pointers"
	bool "Compile the kernel with frame pointers"
	depends on DEBUG_KERNEL && \
	depends on DEBUG_KERNEL && \
		(CRIS || M68K || FRV || UML || \
		(CRIS || M68K || FRV || UML || \
		 AVR32 || SUPERH || BLACKFIN || MN10300) || \
		 AVR32 || SUPERH || BLACKFIN || MN10300 || METAG) || \
		ARCH_WANT_FRAME_POINTERS
		ARCH_WANT_FRAME_POINTERS
	default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS
	default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS
	help
	help