Merge with git://www.denx.de/git/u-boot.git
[oweals/u-boot.git] / board / trab / u-boot.lds
index 5ea182923d9cf747be2357151f48409128bf0984..e56cdd3cad4ab7851e3a3031c7a786b1df9b3ed1 100644 (file)
@@ -27,9 +27,9 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text      :
        {
          cpu/arm920t/start.o   (.text)
@@ -39,24 +39,27 @@ SECTIONS
          lib_generic/string.o  (.text)
 
        . = DEFINED(env_offset) ? env_offset : .;
-       common/environment.o    (.ppcenv)
+         common/environment.o  (.ppcenv)
 
          *(.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) }
 
-       armboot_end_data = .;
+       . = .;
+       __u_boot_cmd_start = .;
+       .u_boot_cmd : { *(.u_boot_cmd) }
+       __u_boot_cmd_end = .;
 
-        . = ALIGN(4);
-        .bss : { *(.bss) }
-
-       armboot_end = .;
+       . = ALIGN(4);
+       __bss_start = .;
+       .bss : { *(.bss) }
+       _end = .;
 }