Add stacktrace support, which is required for lockdep and tracing. The stack tracing simply looks at all kernel text symbols found on the stack, similar to the trap stack dumping code, which can also be converted to use this. Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			443 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			443 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# $Id: Makefile,v 1.12 2004/10/19 13:07:43 starvik Exp $
 | 
						|
#
 | 
						|
# Makefile for the linux kernel.
 | 
						|
#
 | 
						|
 | 
						|
CPPFLAGS_vmlinux.lds := -DDRAM_VIRTUAL_BASE=0x$(CONFIG_ETRAX_DRAM_VIRTUAL_BASE)
 | 
						|
extra-y	:= vmlinux.lds
 | 
						|
 | 
						|
obj-y   := process.o traps.o irq.o ptrace.o setup.o time.o sys_cris.o
 | 
						|
obj-y += devicetree.o
 | 
						|
obj-y += stacktrace.o
 | 
						|
 | 
						|
obj-$(CONFIG_MODULES)    += crisksyms.o
 | 
						|
obj-$(CONFIG_MODULES)	 += module.o
 | 
						|
obj-$(CONFIG_SYSTEM_PROFILER)   += profile.o
 | 
						|
 | 
						|
clean:
 | 
						|
 |