]> git.sur5r.net Git - u-boot/blobdiff - board/hymod/u-boot.lds
rename _end to __bss_end__
[u-boot] / board / hymod / u-boot.lds
index 2b7e54bf742c4ca8593fae4c860b79d5324388be..1592f4f6e8ceeb6a9c2c1c82fb97794298e9106f 100644 (file)
@@ -55,30 +55,27 @@ SECTIONS
     /* WARNING - the following is hand-optimized to fit within */
     /* the sector layout of our flash chips!   XXX FIXME XXX   */
 
-    cpu/mpc8260/start.o        (.text)
+    arch/powerpc/cpu/mpc8260/start.o   (.text)
 /*
     common/dlmalloc.o  (.text)
-    lib_ppc/ppcstring.o        (.text)
-    lib_generic/vsprintf.o     (.text)
-    lib_generic/crc32.o                (.text)
-    lib_generic/zlib.o         (.text)
+    arch/powerpc/lib/ppcstring.o       (.text)
+    lib/vsprintf.o     (.text)
+    lib/crc32.o                (.text)
+    lib/zlib.o         (.text)
 
     . = env_offset;
 */
     common/env_embedded.o(.text)
 
     *(.text)
-    *(.fixup)
     *(.got1)
   }
   _etext = .;
   PROVIDE (etext = .);
   .rodata    :
   {
-    *(.rodata)
-    *(.rodata1)
-    *(.rodata.str1.4)
     *(.eh_frame)
+    *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
   }
   .fini      : { *(.fini)    } =0
   .ctors     : { *(.ctors)   }
@@ -142,6 +139,7 @@ SECTIONS
   {
     common/env_embedded.o (.ppcenv)
   }
-  _end = . ;
+  . = ALIGN(4);
+  __bss_end__ = . ;
   PROVIDE (end = .);
 }