]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - nand_spl/board/amcc/acadia/u-boot.lds
Merge branch 'master' of git://git.denx.de/u-boot-samsung
[karo-tx-uboot.git] / nand_spl / board / amcc / acadia / u-boot.lds
index a07a773e011fd9097300db37db3364f0d0d2019a..56954650af535099e93221952961c10dbbe62197 100644 (file)
@@ -26,7 +26,7 @@ SECTIONS
 {
   .resetvec 0xf8004ffc :
   {
-    *(.resetvec)
+    KEEP(*(.resetvec))
   } = 0xffff
 
   .text      :
@@ -42,7 +42,7 @@ SECTIONS
 
   .data    :
   {
-    *(.rodata*)
+    *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
     *(.data*)
     *(.sdata*)
     __got2_start = .;
@@ -53,10 +53,11 @@ SECTIONS
   _edata  =  .;
 
   __bss_start = .;
-  .bss       :
+  .bss (NOLOAD)       :
   {
    *(.sbss)
    *(.bss)
+   . = ALIGN(4);
   }
 
   _end = . ;