diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-11 03:58:11 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:45 -0500 |
commit | 49e6c3e7460a718242dc11b801811f0ac6892154 (patch) | |
tree | 573474e658930c55e20da38cbcd3f3fe6652daa9 | |
parent | 1b6cf8175e52cbda111ab8b590da6a1d093e9954 (diff) |
sh: Split out linker script to _32 and _64 variants.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/vmlinux.lds.S | 139 | ||||
-rw-r--r-- | arch/sh/kernel/vmlinux_32.lds.S | 138 | ||||
-rw-r--r-- | arch/sh/kernel/vmlinux_64.lds.S (renamed from arch/sh64/kernel/vmlinux.lds.S) | 1 |
3 files changed, 141 insertions, 137 deletions
diff --git a/arch/sh/kernel/vmlinux.lds.S b/arch/sh/kernel/vmlinux.lds.S index 0956fb3681a3..d7d4991f32af 100644 --- a/arch/sh/kernel/vmlinux.lds.S +++ b/arch/sh/kernel/vmlinux.lds.S | |||
@@ -1,138 +1,5 @@ | |||
1 | /* | 1 | #ifdef CONFIG_SUPERH32 |
2 | * ld script to make SuperH Linux kernel | 2 | # include "vmlinux_32.lds.S" |
3 | * Written by Niibe Yutaka | ||
4 | */ | ||
5 | #include <asm/thread_info.h> | ||
6 | #include <asm/cache.h> | ||
7 | #include <asm-generic/vmlinux.lds.h> | ||
8 | |||
9 | #ifdef CONFIG_CPU_LITTLE_ENDIAN | ||
10 | OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux") | ||
11 | #else | 3 | #else |
12 | OUTPUT_FORMAT("elf32-shbig-linux", "elf32-shbig-linux", "elf32-shbig-linux") | 4 | # include "vmlinux_64.lds.S" |
13 | #endif | 5 | #endif |
14 | OUTPUT_ARCH(sh) | ||
15 | ENTRY(_start) | ||
16 | SECTIONS | ||
17 | { | ||
18 | . = CONFIG_PAGE_OFFSET + CONFIG_MEMORY_START + CONFIG_ZERO_PAGE_OFFSET; | ||
19 | _text = .; /* Text and read-only data */ | ||
20 | |||
21 | .empty_zero_page : { | ||
22 | *(.empty_zero_page) | ||
23 | } = 0 | ||
24 | |||
25 | .text : { | ||
26 | *(.text.head) | ||
27 | TEXT_TEXT | ||
28 | SCHED_TEXT | ||
29 | LOCK_TEXT | ||
30 | KPROBES_TEXT | ||
31 | *(.fixup) | ||
32 | *(.gnu.warning) | ||
33 | } = 0x0009 | ||
34 | |||
35 | . = ALIGN(16); /* Exception table */ | ||
36 | __start___ex_table = .; | ||
37 | __ex_table : { *(__ex_table) } | ||
38 | __stop___ex_table = .; | ||
39 | |||
40 | _etext = .; /* End of text section */ | ||
41 | |||
42 | BUG_TABLE | ||
43 | NOTES | ||
44 | RO_DATA(PAGE_SIZE) | ||
45 | |||
46 | . = ALIGN(THREAD_SIZE); | ||
47 | .data : { /* Data */ | ||
48 | *(.data.init_task) | ||
49 | |||
50 | . = ALIGN(L1_CACHE_BYTES); | ||
51 | *(.data.cacheline_aligned) | ||
52 | |||
53 | . = ALIGN(L1_CACHE_BYTES); | ||
54 | *(.data.read_mostly) | ||
55 | |||
56 | . = ALIGN(PAGE_SIZE); | ||
57 | *(.data.page_aligned) | ||
58 | |||
59 | __nosave_begin = .; | ||
60 | *(.data.nosave) | ||
61 | . = ALIGN(PAGE_SIZE); | ||
62 | __nosave_end = .; | ||
63 | |||
64 | DATA_DATA | ||
65 | CONSTRUCTORS | ||
66 | } | ||
67 | |||
68 | _edata = .; /* End of data section */ | ||
69 | |||
70 | . = ALIGN(PAGE_SIZE); /* Init code and data */ | ||
71 | __init_begin = .; | ||
72 | _sinittext = .; | ||
73 | .init.text : { *(.init.text) } | ||
74 | _einittext = .; | ||
75 | .init.data : { *(.init.data) } | ||
76 | |||
77 | . = ALIGN(16); | ||
78 | __setup_start = .; | ||
79 | .init.setup : { *(.init.setup) } | ||
80 | __setup_end = .; | ||
81 | |||
82 | __initcall_start = .; | ||
83 | .initcall.init : { | ||
84 | INITCALLS | ||
85 | } | ||
86 | __initcall_end = .; | ||
87 | __con_initcall_start = .; | ||
88 | .con_initcall.init : { *(.con_initcall.init) } | ||
89 | __con_initcall_end = .; | ||
90 | |||
91 | SECURITY_INIT | ||
92 | |||
93 | #ifdef CONFIG_BLK_DEV_INITRD | ||
94 | . = ALIGN(PAGE_SIZE); | ||
95 | __initramfs_start = .; | ||
96 | .init.ramfs : { *(.init.ramfs) } | ||
97 | __initramfs_end = .; | ||
98 | #endif | ||
99 | |||
100 | . = ALIGN(4); | ||
101 | __machvec_start = .; | ||
102 | .machvec.init : { *(.machvec.init) } | ||
103 | __machvec_end = .; | ||
104 | |||
105 | PERCPU(PAGE_SIZE) | ||
106 | |||
107 | /* | ||
108 | * .exit.text is discarded at runtime, not link time, to deal with | ||
109 | * references from __bug_table | ||
110 | */ | ||
111 | .exit.text : { *(.exit.text) } | ||
112 | .exit.data : { *(.exit.data) } | ||
113 | |||
114 | . = ALIGN(PAGE_SIZE); | ||
115 | .bss : { | ||
116 | __init_end = .; | ||
117 | __bss_start = .; /* BSS */ | ||
118 | *(.bss.page_aligned) | ||
119 | *(.bss) | ||
120 | *(COMMON) | ||
121 | . = ALIGN(4); | ||
122 | _ebss = .; /* uClinux MTD sucks */ | ||
123 | _end = . ; | ||
124 | } | ||
125 | |||
126 | /* | ||
127 | * When something in the kernel is NOT compiled as a module, the | ||
128 | * module cleanup code and data are put into these segments. Both | ||
129 | * can then be thrown away, as cleanup code is never called unless | ||
130 | * it's a module. | ||
131 | */ | ||
132 | /DISCARD/ : { | ||
133 | *(.exitcall.exit) | ||
134 | } | ||
135 | |||
136 | STABS_DEBUG | ||
137 | DWARF_DEBUG | ||
138 | } | ||
diff --git a/arch/sh/kernel/vmlinux_32.lds.S b/arch/sh/kernel/vmlinux_32.lds.S new file mode 100644 index 000000000000..0956fb3681a3 --- /dev/null +++ b/arch/sh/kernel/vmlinux_32.lds.S | |||
@@ -0,0 +1,138 @@ | |||
1 | /* | ||
2 | * ld script to make SuperH Linux kernel | ||
3 | * Written by Niibe Yutaka | ||
4 | */ | ||
5 | #include <asm/thread_info.h> | ||
6 | #include <asm/cache.h> | ||
7 | #include <asm-generic/vmlinux.lds.h> | ||
8 | |||
9 | #ifdef CONFIG_CPU_LITTLE_ENDIAN | ||
10 | OUTPUT_FORMAT("elf32-sh-linux", "elf32-sh-linux", "elf32-sh-linux") | ||
11 | #else | ||
12 | OUTPUT_FORMAT("elf32-shbig-linux", "elf32-shbig-linux", "elf32-shbig-linux") | ||
13 | #endif | ||
14 | OUTPUT_ARCH(sh) | ||
15 | ENTRY(_start) | ||
16 | SECTIONS | ||
17 | { | ||
18 | . = CONFIG_PAGE_OFFSET + CONFIG_MEMORY_START + CONFIG_ZERO_PAGE_OFFSET; | ||
19 | _text = .; /* Text and read-only data */ | ||
20 | |||
21 | .empty_zero_page : { | ||
22 | *(.empty_zero_page) | ||
23 | } = 0 | ||
24 | |||
25 | .text : { | ||
26 | *(.text.head) | ||
27 | TEXT_TEXT | ||
28 | SCHED_TEXT | ||
29 | LOCK_TEXT | ||
30 | KPROBES_TEXT | ||
31 | *(.fixup) | ||
32 | *(.gnu.warning) | ||
33 | } = 0x0009 | ||
34 | |||
35 | . = ALIGN(16); /* Exception table */ | ||
36 | __start___ex_table = .; | ||
37 | __ex_table : { *(__ex_table) } | ||
38 | __stop___ex_table = .; | ||
39 | |||
40 | _etext = .; /* End of text section */ | ||
41 | |||
42 | BUG_TABLE | ||
43 | NOTES | ||
44 | RO_DATA(PAGE_SIZE) | ||
45 | |||
46 | . = ALIGN(THREAD_SIZE); | ||
47 | .data : { /* Data */ | ||
48 | *(.data.init_task) | ||
49 | |||
50 | . = ALIGN(L1_CACHE_BYTES); | ||
51 | *(.data.cacheline_aligned) | ||
52 | |||
53 | . = ALIGN(L1_CACHE_BYTES); | ||
54 | *(.data.read_mostly) | ||
55 | |||
56 | . = ALIGN(PAGE_SIZE); | ||
57 | *(.data.page_aligned) | ||
58 | |||
59 | __nosave_begin = .; | ||
60 | *(.data.nosave) | ||
61 | . = ALIGN(PAGE_SIZE); | ||
62 | __nosave_end = .; | ||
63 | |||
64 | DATA_DATA | ||
65 | CONSTRUCTORS | ||
66 | } | ||
67 | |||
68 | _edata = .; /* End of data section */ | ||
69 | |||
70 | . = ALIGN(PAGE_SIZE); /* Init code and data */ | ||
71 | __init_begin = .; | ||
72 | _sinittext = .; | ||
73 | .init.text : { *(.init.text) } | ||
74 | _einittext = .; | ||
75 | .init.data : { *(.init.data) } | ||
76 | |||
77 | . = ALIGN(16); | ||
78 | __setup_start = .; | ||
79 | .init.setup : { *(.init.setup) } | ||
80 | __setup_end = .; | ||
81 | |||
82 | __initcall_start = .; | ||
83 | .initcall.init : { | ||
84 | INITCALLS | ||
85 | } | ||
86 | __initcall_end = .; | ||
87 | __con_initcall_start = .; | ||
88 | .con_initcall.init : { *(.con_initcall.init) } | ||
89 | __con_initcall_end = .; | ||
90 | |||
91 | SECURITY_INIT | ||
92 | |||
93 | #ifdef CONFIG_BLK_DEV_INITRD | ||
94 | . = ALIGN(PAGE_SIZE); | ||
95 | __initramfs_start = .; | ||
96 | .init.ramfs : { *(.init.ramfs) } | ||
97 | __initramfs_end = .; | ||
98 | #endif | ||
99 | |||
100 | . = ALIGN(4); | ||
101 | __machvec_start = .; | ||
102 | .machvec.init : { *(.machvec.init) } | ||
103 | __machvec_end = .; | ||
104 | |||
105 | PERCPU(PAGE_SIZE) | ||
106 | |||
107 | /* | ||
108 | * .exit.text is discarded at runtime, not link time, to deal with | ||
109 | * references from __bug_table | ||
110 | */ | ||
111 | .exit.text : { *(.exit.text) } | ||
112 | .exit.data : { *(.exit.data) } | ||
113 | |||
114 | . = ALIGN(PAGE_SIZE); | ||
115 | .bss : { | ||
116 | __init_end = .; | ||
117 | __bss_start = .; /* BSS */ | ||
118 | *(.bss.page_aligned) | ||
119 | *(.bss) | ||
120 | *(COMMON) | ||
121 | . = ALIGN(4); | ||
122 | _ebss = .; /* uClinux MTD sucks */ | ||
123 | _end = . ; | ||
124 | } | ||
125 | |||
126 | /* | ||
127 | * When something in the kernel is NOT compiled as a module, the | ||
128 | * module cleanup code and data are put into these segments. Both | ||
129 | * can then be thrown away, as cleanup code is never called unless | ||
130 | * it's a module. | ||
131 | */ | ||
132 | /DISCARD/ : { | ||
133 | *(.exitcall.exit) | ||
134 | } | ||
135 | |||
136 | STABS_DEBUG | ||
137 | DWARF_DEBUG | ||
138 | } | ||
diff --git a/arch/sh64/kernel/vmlinux.lds.S b/arch/sh/kernel/vmlinux_64.lds.S index f533a064da5f..9e30775ffc2b 100644 --- a/arch/sh64/kernel/vmlinux.lds.S +++ b/arch/sh/kernel/vmlinux_64.lds.S | |||
@@ -24,7 +24,6 @@ | |||
24 | 24 | ||
25 | #include <asm/page.h> | 25 | #include <asm/page.h> |
26 | #include <asm/cache.h> | 26 | #include <asm/cache.h> |
27 | #include <asm/processor.h> | ||
28 | #include <asm/thread_info.h> | 27 | #include <asm/thread_info.h> |
29 | 28 | ||
30 | #define LOAD_OFFSET CONFIG_CACHED_MEMORY_OFFSET | 29 | #define LOAD_OFFSET CONFIG_CACHED_MEMORY_OFFSET |