summaryrefslogtreecommitdiffstats
path: root/arch/arm/vmlinux-armo.lds.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-01-27 01:05:20 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-01-27 01:05:20 +0000
commit546db14ee74118296f425f3b91634fb767d67290 (patch)
tree22b613a3da8d4bf663eec5e155af01b87fdf9094 /arch/arm/vmlinux-armo.lds.in
parent1e25e41c4f5474e14452094492dbc169b800e4c8 (diff)
Merge with Linux 2.3.23. The new bootmem stuff has broken various
platforms. At this time I've only verified that IP22 support compiles and IP27 actually works.
Diffstat (limited to 'arch/arm/vmlinux-armo.lds.in')
-rw-r--r--arch/arm/vmlinux-armo.lds.in38
1 files changed, 24 insertions, 14 deletions
diff --git a/arch/arm/vmlinux-armo.lds.in b/arch/arm/vmlinux-armo.lds.in
index f336370b4..446f49924 100644
--- a/arch/arm/vmlinux-armo.lds.in
+++ b/arch/arm/vmlinux-armo.lds.in
@@ -3,16 +3,36 @@
* Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>
*/
OUTPUT_ARCH(arm)
-ENTRY(_start)
+ENTRY(stext)
SECTIONS
{
. = TEXTADDR;
+ __init_begin = .;
+ .text.init : { *(.text.init) }
+ __proc_info_begin = .;
+ .proc.info : { *(.proc.info) }
+ __proc_info_end = .;
+ .data.init : { *(.data.init) }
+ . = ALIGN(16);
+ __setup_start = .;
+ .setup.init : { *(.setup.init) }
+ __setup_end = .;
+ __initcall_start = .;
+ .initcall.init : { *(.initcall.init) }
+ __initcall_end = .;
+ . = ALIGN(32768);
+ __init_end = .;
+
+ .init.task : {
+ *(.init.task)
+ }
+
_text = .; /* Text and read-only data */
.text : {
*(.text)
*(.fixup)
*(.gnu.warning)
- } = 0x9090
+ }
.text.lock : { *(.text.lock) } /* out-of-line lock text */
.rodata : { *(.rodata) }
.kstrtab : { *(.kstrtab) }
@@ -26,27 +46,17 @@ SECTIONS
__ksymtab : { *(__ksymtab) }
__stop___ksymtab = .;
+ .got : { *(.got) } /* Global offset table */
+
_etext = .; /* End of text section */
- . = ALIGN(8192);
.data : { /* Data */
- *(.init.task)
*(.data)
CONSTRUCTORS
}
_edata = .; /* End of data section */
- . = ALIGN(32768); /* Init code and data */
- __init_begin = .;
- .text.init : { *(.text.init) }
- __proc_info_begin = .;
- .proc.info : { *(.proc.info) }
- __proc_info_end = .;
- .data.init : { *(.data.init) }
- . = ALIGN(32768);
- __init_end = .;
-
__bss_start = .; /* BSS */
.bss : {
*(.bss)