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

Next file: linux/arch/mips/kernel/head.S
Previous file: linux/arch/m68k/vmlinux-sun3.lds
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.16/linux/arch/m68k/vmlinux.lds linux/arch/m68k/vmlinux.lds
@@ -31,10 +31,12 @@
 	CONSTRUCTORS
 	}
 
-  _edata = .;			/* End of data section */
+  .bss : { *(.bss) }		/* BSS */
 
-  . = ALIGN(8192);
-  init_task : { *(init_task) }
+  . = ALIGN(16);
+  .data.cacheline_aligned : { *(.data.cacheline_aligned) }
+
+  _edata = .;			/* End of data section */
 
   . = ALIGN(4096);		/* Init code and data */
   __init_begin = .;
@@ -50,13 +52,8 @@
   . = ALIGN(8192);
   __init_end = .;
 
-  . = ALIGN(16);
-  .data.cacheline_aligned : { *(.data.cacheline_aligned) }
+  init_task : { *(init_task) }	/* The initial task and kernel stack */
 
-  __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)