patch-2.3.25 linux/arch/arm/vmlinux-armo.lds.in

Next file: linux/arch/i386/kernel/apm.c
Previous file: linux/arch/arm/mm/small_page.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.24/linux/arch/arm/vmlinux-armo.lds.in linux/arch/arm/vmlinux-armo.lds.in
@@ -7,7 +7,8 @@
 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 @@
 	*(.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) }

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