]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - nand_spl/board/samsung/smdk6400/u-boot.lds
SMDK6400: Add some labels to u-boot.lds to support nand_spl
[karo-tx-uboot.git] / nand_spl / board / samsung / smdk6400 / u-boot.lds
index 4cb686c7e516c4e6ddb53d9d1b945970598ec95c..0153e0e09b41f76d284c606a8b5e5204c2134b99 100644 (file)
@@ -55,7 +55,22 @@ SECTIONS
        __u_boot_cmd_end = .;
 
        . = ALIGN(4);
+
+       .rel.dyn : {
+       __rel_dyn_start = .;
+       *(.rel*)
+       __rel_dyn_end = .;
+       }
+
+       .dynsym : {
+       __dynsym_start = .;
+       *(.dynsym)
+       }
+
+       .bss __rel_dyn_start (OVERLAY) : {
        __bss_start = .;
-       .bss : { *(.bss) . = ALIGN(4); }
+       *(.bss)
+       . = ALIGN(4);
        __bss_end__ = .;
+       }
 }