patch-2.3.23 linux/arch/arm/boot/compressed/vmlinux.lds.in
Next file: linux/arch/arm/config.in
Previous file: linux/arch/arm/boot/compressed/misc.c
Back to the patch index
Back to the overall index
- Lines: 53
- Date:
Wed Oct 20 16:29:08 1999
- Orig file:
v2.3.22/linux/arch/arm/boot/compressed/vmlinux.lds.in
- Orig date:
Wed Dec 31 16:00:00 1969
diff -u --recursive --new-file v2.3.22/linux/arch/arm/boot/compressed/vmlinux.lds.in linux/arch/arm/boot/compressed/vmlinux.lds.in
@@ -0,0 +1,52 @@
+OUTPUT_ARCH(arm)
+ENTRY(_start)
+SECTIONS
+{
+ . = LOAD_ADDR;
+ _load_addr = .;
+
+ . = TEXT_START;
+ _text = .;
+
+ .text : {
+ _start = .;
+ head.o(.start)
+ *(.start)
+ head.o(.text)
+ *(.text)
+ *(.fixup)
+ *(.gnu.warning)
+ input_data = .;
+ piggy.o
+ input_data_end = .;
+ . = ALIGN(4);
+ }
+
+ _etext = .;
+
+ .data : {
+ *(.data)
+ }
+
+ _edata = .;
+
+ . = BSS_START;
+ __bss_start = .;
+ .bss : {
+ *(.bss)
+ }
+ _end = .;
+
+ .stack : {
+ *(.stack)
+ }
+
+ .stab 0 : { *(.stab) }
+ .stabstr 0 : { *(.stabstr) }
+ .stab.excl 0 : { *(.stab.excl) }
+ .stab.exclstr 0 : { *(.stab.exclstr) }
+ .stab.index 0 : { *(.stab.index) }
+ .stab.indexstr 0 : { *(.stab.indexstr) }
+ .comment 0 : { *(.comment) }
+}
+
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)