]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/ixdp425/u-boot.lds
Align end of bss by 4 bytes
[karo-tx-uboot.git] / board / ixdp425 / u-boot.lds
index 3170aa0afb14535f42ed653ebbf32d8db878ec42..f46a7c7e50c2f874ca2b0dd57bd8b033649dfc8d 100644 (file)
@@ -44,12 +44,13 @@ SECTIONS
        . = ALIGN(4);
        .got : { *(.got) }
 
-       armboot_end_data = .;
+       . = .;
+       __u_boot_cmd_start = .;
+       .u_boot_cmd : { *(.u_boot_cmd) }
+       __u_boot_cmd_end = .;
 
        . = ALIGN(4);
-       bss_start = .;
-       .bss : { *(.bss) }
-       bss_end = .;
-
-       armboot_end = .;
+       __bss_start = .;
+       .bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
+       _end = .;
 }