]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/trab/u-boot.lds
* Code cleanup:
[karo-tx-uboot.git] / board / trab / u-boot.lds
index 5ea182923d9cf747be2357151f48409128bf0984..ccffb198ce2acffd2eb6d39d4e1d4893eb74749c 100644 (file)
@@ -27,9 +27,9 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text      :
        {
          cpu/arm920t/start.o   (.text)
@@ -44,19 +44,24 @@ SECTIONS
          *(.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 = .;
 }