diff options
Diffstat (limited to 'arch/powerpc/kernel/vmlinux.lds.S')
| -rw-r--r-- | arch/powerpc/kernel/vmlinux.lds.S | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index b9ef1644a72..a047a6cfca4 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S @@ -52,9 +52,10 @@ SECTIONS  	/* Text and gots */  	.text : AT(ADDR(.text) - LOAD_OFFSET) {  		ALIGN_FUNCTION(); -		*(.text.head) +		HEAD_TEXT  		_text = .; -		*(.text .fixup .text.init.refok .exit.text.refok __ftr_alt_*) +		/* careful! __ftr_alt_* sections need to be close to .text */ +		*(.text .fixup __ftr_alt_* .ref.text)  		SCHED_TEXT  		LOCK_TEXT  		KPROBES_TEXT  |