aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc/kernel/vmlinux.lds.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sparc/kernel/vmlinux.lds.S')
-rw-r--r--arch/sparc/kernel/vmlinux.lds.S9
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/sparc/kernel/vmlinux.lds.S b/arch/sparc/kernel/vmlinux.lds.S
index 4bfbeffb7320..59c8d090920c 100644
--- a/arch/sparc/kernel/vmlinux.lds.S
+++ b/arch/sparc/kernel/vmlinux.lds.S
@@ -1,7 +1,9 @@
1/* ld script for sparc32/sparc64 kernel */ 1/* ld script for sparc32/sparc64 kernel */
2 2
3#include <asm-generic/vmlinux.lds.h> 3#include <asm-generic/vmlinux.lds.h>
4
4#include <asm/page.h> 5#include <asm/page.h>
6#include <asm/thread_info.h>
5 7
6#ifdef CONFIG_SPARC32 8#ifdef CONFIG_SPARC32
7#define INITIAL_ADDRESS 0x10000 + SIZEOF_HEADERS 9#define INITIAL_ADDRESS 0x10000 + SIZEOF_HEADERS
@@ -65,8 +67,15 @@ SECTIONS
65 .data.read_mostly : { 67 .data.read_mostly : {
66 *(.data.read_mostly) 68 *(.data.read_mostly)
67 } 69 }
70 /* End of data section */
68 _edata = .; 71 _edata = .;
69 PROVIDE (edata = .); 72 PROVIDE (edata = .);
73
74 /* init_task */
75 . = ALIGN(THREAD_SIZE);
76 .data.init_task : {
77 *(.data.init_task)
78 }
70 .fixup : { 79 .fixup : {
71 __start___fixup = .; 80 __start___fixup = .;
72 *(.fixup) 81 *(.fixup)