 19f6b8b44e
			
		
	
	
	19f6b8b44e
	
	
	
		
			
			The linker script offsets were broken by the recent 29/32-bit integration, so this fixes it up for sh64. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			519 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			519 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __ASM_SH_VMLINUX_LDS_H
 | |
| #define __ASM_SH_VMLINUX_LDS_H
 | |
| 
 | |
| #include <asm-generic/vmlinux.lds.h>
 | |
| 
 | |
| #ifdef CONFIG_DWARF_UNWINDER
 | |
| #define DWARF_EH_FRAME							\
 | |
| 	.eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) {			\
 | |
| 		  VMLINUX_SYMBOL(__start_eh_frame) = .;			\
 | |
| 		  *(.eh_frame)						\
 | |
| 		  VMLINUX_SYMBOL(__stop_eh_frame) = .;			\
 | |
| 	}
 | |
| #else
 | |
| #define DWARF_EH_FRAME
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_SUPERH64
 | |
| #define EXTRA_TEXT		\
 | |
| 	*(.text64)		\
 | |
| 	*(.text..SHmedia32)
 | |
| #else
 | |
| #define EXTRA_TEXT
 | |
| #endif
 | |
| 
 | |
| #endif /* __ASM_SH_VMLINUX_LDS_H */
 |