patch-2.3.23 linux/arch/arm/vmlinux-armo.lds.in
Next file: linux/arch/arm/vmlinux-armv.lds.in
Previous file: linux/arch/arm/nwfpe/single_cpdo.c
Back to the patch index
Back to the overall index
- Lines: 68
- Date:
Wed Oct 20 16:29:08 1999
- Orig file:
v2.3.22/linux/arch/arm/vmlinux-armo.lds.in
- Orig date:
Tue Aug 31 17:29:12 1999
diff -u --recursive --new-file v2.3.22/linux/arch/arm/vmlinux-armo.lds.in linux/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,26 +46,16 @@
__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 : {
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)