patch-2.3.13 linux/arch/m68k/vmlinux.lds

Next file: linux/arch/mips/dec/serial.c
Previous file: linux/arch/m68k/q40/config.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.12/linux/arch/m68k/vmlinux.lds linux/arch/m68k/vmlinux.lds
@@ -31,22 +31,32 @@
 	CONSTRUCTORS
 	}
 
-  .bss : { *(.bss) }		/* BSS */
-
   _edata = .;			/* End of data section */
 
-  . = ALIGN(16);
-  .data.cacheline_aligned : { *(.data.cacheline_aligned) }
+  . = ALIGN(8192);
+  init_task : { *(init_task) }
 
   . = ALIGN(4096);		/* Init code and data */
   __init_begin = .;
   .text.init : { *(.text.init) }
   .data.init : { *(.data.init) }
+  . = ALIGN(16);
+  __setup_start = .;
+  .setup.init : { *(.setup.init) }
+  __setup_end = .;
+  __initcall_start = .;
+  .initcall.init : { *(.initcall.init) }
+  __initcall_end = .;
   . = ALIGN(8192);
   __init_end = .;
 
-  init_task : { *(init_task) }	/* The initial task and kernel stack */
+  . = ALIGN(16);
+  .data.cacheline_aligned : { *(.data.cacheline_aligned) }
 
+  __bss_start = .;		/* BSS */
+  .bss : {
+	*(.bss)
+	}
   _end = . ;
 
   /* Stabs debugging sections.  */

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