]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/impa7/u-boot.lds
* Code cleanup:
[karo-tx-uboot.git] / board / impa7 / u-boot.lds
index 084964858bec5d2435cfba0663301f156ee04dc7..36521b8ef7e26058a5055e526505875e344082e7 100644 (file)
@@ -26,28 +26,33 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text      :
        {
          cpu/arm720t/start.o   (.text)
          *(.text)
        }
 
-        . = ALIGN(4);
-        .rodata : { *(.rodata) }
+       . = ALIGN(4);
+       .rodata : { *(.rodata) }
 
-        . = ALIGN(4);
-        .data : { *(.data) }
+       . = ALIGN(4);
+       .data : { *(.data) }
 
-        . = ALIGN(4);
-        .got : { *(.got) }
+       . = ALIGN(4);
+       .got : { *(.got) }
+
+  __u_boot_cmd_start = .;
+  .u_boot_cmd : { *(.u_boot_cmd) }
+  __u_boot_cmd_end = .;
 
        armboot_end_data = .;
 
-        . = ALIGN(4);
-        .bss : { *(.bss) }
+       . = ALIGN(4);
+       .bss : { *(.bss) }
 
        armboot_end = .;
+
 }