patch-2.3.23 linux/arch/arm/vmlinux-armv.lds.in

Next file: linux/arch/i386/Makefile
Previous file: linux/arch/arm/vmlinux-armo.lds.in
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.22/linux/arch/arm/vmlinux-armv.lds.in linux/arch/arm/vmlinux-armv.lds.in
@@ -3,11 +3,10 @@
  * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz>
  */
 OUTPUT_ARCH(arm)
-ENTRY(_start)
+ENTRY(stext)
 SECTIONS
 {
   . = TEXTADDR;
-  _text = .;			/* Text and read-only data	*/
   .text : { }			/* Set text start address	*/
 
   __init_begin = .;		/* Init code and data		*/
@@ -38,6 +37,7 @@
   . = ALIGN(4096);
   __netwinder_end = .;
 
+  _text = .;			/* Text and read-only data	*/
   .text.real : {		/* Real text segment		*/
 	*(.text)
 	*(.fixup)
@@ -56,6 +56,8 @@
   __start___ksymtab = .;	/* Kernel symbol table		*/
   __ksymtab : { *(__ksymtab) }
   __stop___ksymtab = .;
+
+  .got : { *(.got) }		/* Global offset table		*/
 
   _etext = .;			/* End of text section		*/
 

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)