Index: kernel/arch/mips32/_link.ld.in
===================================================================
--- kernel/arch/mips32/_link.ld.in	(revision 72bcb25fd2166818d63b580efcafdf265183c0c8)
+++ kernel/arch/mips32/_link.ld.in	(revision 04d45129f69d986fd89e6d7719e54cfbf4212bdb)
@@ -11,5 +11,5 @@
 OUTPUT_ARCH(mips)
 
-ENTRY(kernel_image_start) 
+ENTRY(kernel_image_start)
 
 SECTIONS {
@@ -32,7 +32,8 @@
 		*(.sdata);
 		*(.reginfo);
-		/* Unfortunately IRIX does not allow us
-	         * to include this as a last section :-(
-		 * BSS/SBSS addresses will be wrong */
+		*(.sbss);
+		*(.scommon);
+		*(.bss);		/* uninitialized static variables */
+		*(COMMON); 		/* global variables */
 		symbol_table = .;
 		*(symtab.*);             
@@ -41,12 +42,4 @@
 	.lit8 : { *(.lit8) }
 	.lit4 : { *(.lit4) }
-	.sbss : {
-		*(.sbss);
-		*(.scommon);
-	}
-	.bss : {
-		*(.bss);		/* uninitialized static variables */
-		*(COMMON); 		/* global variables */
-	}
 
 	kdata_end = .;
