summaryrefslogtreecommitdiffstats
path: root/arch/arm/vmlinux-armo.lds.in
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-01-29 01:41:54 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-01-29 01:41:54 +0000
commitf969d69ba9f952e5bdd38278e25e26a3e4a61a70 (patch)
treeb3530d803df59d726afaabebc6626987dee1ca05 /arch/arm/vmlinux-armo.lds.in
parenta10ce7ef2066b455d69187643ddf2073bfc4db24 (diff)
Merge with 2.3.27.
Diffstat (limited to 'arch/arm/vmlinux-armo.lds.in')
-rw-r--r--arch/arm/vmlinux-armo.lds.in22
1 files changed, 12 insertions, 10 deletions
diff --git a/arch/arm/vmlinux-armo.lds.in b/arch/arm/vmlinux-armo.lds.in
index 446f49924..5fbafe77a 100644
--- a/arch/arm/vmlinux-armo.lds.in
+++ b/arch/arm/vmlinux-armo.lds.in
@@ -7,7 +7,8 @@ ENTRY(stext)
SECTIONS
{
. = TEXTADDR;
- __init_begin = .;
+
+ __init_begin = .; /* Init code and data */
.text.init : { *(.text.init) }
__proc_info_begin = .;
.proc.info : { *(.proc.info) }
@@ -27,43 +28,44 @@ SECTIONS
*(.init.task)
}
- _text = .; /* Text and read-only data */
+ _text = .; /* Text and read-only data */
.text : {
*(.text)
*(.fixup)
*(.gnu.warning)
}
+
.text.lock : { *(.text.lock) } /* out-of-line lock text */
.rodata : { *(.rodata) }
.kstrtab : { *(.kstrtab) }
- . = ALIGN(16); /* Exception table */
+ . = ALIGN(16); /* Exception table */
__start___ex_table = .;
__ex_table : { *(__ex_table) }
__stop___ex_table = .;
- __start___ksymtab = .; /* Kernel symbol table */
+ __start___ksymtab = .; /* Kernel symbol table */
__ksymtab : { *(__ksymtab) }
__stop___ksymtab = .;
- .got : { *(.got) } /* Global offset table */
+ .got : { *(.got) } /* Global offset table */
- _etext = .; /* End of text section */
+ _etext = .; /* End of text section */
- .data : { /* Data */
+ .data : { /* Data */
*(.data)
CONSTRUCTORS
}
- _edata = .; /* End of data section */
+ _edata = .; /* End of data section */
- __bss_start = .; /* BSS */
+ __bss_start = .; /* BSS */
.bss : {
*(.bss)
}
_end = . ;
- /* Stabs debugging sections. */
+ /* Stabs debugging sections. */
.stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) }
.stab.excl 0 : { *(.stab.excl) }