]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/innokom/u-boot.lds
* Code cleanup:
[karo-tx-uboot.git] / board / innokom / u-boot.lds
index 46beb152c77f3800008a40d1036d94755c5e90b3..1130013d361dee16c716c9a15cb05092be81fbca 100644 (file)
@@ -26,29 +26,33 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text      :
        {
          cpu/pxa/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);
+       . = ALIGN(4);
        bss_start = .;
-        .bss : { *(.bss) }
+       .bss : { *(.bss) }
        bss_end = .;
 
        armboot_end = .;