aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/parisc/kernel/vmlinux.lds.S6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/parisc/kernel/vmlinux.lds.S b/arch/parisc/kernel/vmlinux.lds.S
index fa6f2b8163e0..64a999882e4f 100644
--- a/arch/parisc/kernel/vmlinux.lds.S
+++ b/arch/parisc/kernel/vmlinux.lds.S
@@ -50,8 +50,10 @@ SECTIONS
50 . = KERNEL_BINARY_TEXT_START; 50 . = KERNEL_BINARY_TEXT_START;
51 51
52 _text = .; /* Text and read-only data */ 52 _text = .; /* Text and read-only data */
53 .text ALIGN(16) : { 53 .head ALIGN(16) : {
54 HEAD_TEXT 54 HEAD_TEXT
55 } = 0
56 .text ALIGN(16) : {
55 TEXT_TEXT 57 TEXT_TEXT
56 SCHED_TEXT 58 SCHED_TEXT
57 LOCK_TEXT 59 LOCK_TEXT
@@ -65,7 +67,7 @@ SECTIONS
65 *(.fixup) 67 *(.fixup)
66 *(.lock.text) /* out-of-line lock text */ 68 *(.lock.text) /* out-of-line lock text */
67 *(.gnu.warning) 69 *(.gnu.warning)
68 } = 0 70 }
69 /* End of text section */ 71 /* End of text section */
70 _etext = .; 72 _etext = .;
71 73