]> git.sur5r.net Git - u-boot/blobdiff - nand_spl/board/samsung/smdk6400/u-boot.lds
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
[u-boot] / nand_spl / board / samsung / smdk6400 / u-boot.lds
index 4cb686c7e516c4e6ddb53d9d1b945970598ec95c..b6c573be5c32acf57648d0f4d63f76d366d7f84a 100644 (file)
@@ -50,12 +50,31 @@ SECTIONS
        . = ALIGN(4);
        .got : { *(.got) }
 
-       __u_boot_cmd_start = .;
-       .u_boot_cmd : { *(.u_boot_cmd) }
-       __u_boot_cmd_end = .;
 
        . = ALIGN(4);
+       .u_boot_list : {
+       *(SORT(.u_boot_list*));
+       }
+
+       . = ALIGN(4);
+
+       .rel.dyn : {
+       __rel_dyn_start = .;
+       *(.rel*)
+       __rel_dyn_end = .;
+       }
+
+       .dynsym : {
+       __dynsym_start = .;
+       *(.dynsym)
+       }
+
+       _end = .;
+
+       .bss __rel_dyn_start (OVERLAY) : {
        __bss_start = .;
-       .bss : { *(.bss) . = ALIGN(4); }
-       __bss_end__ = .;
+       *(.bss)
+       . = ALIGN(4);
+       __bss_end = .;
+       }
 }