]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/shannon/u-boot.lds
* Code cleanup:
[people/ms/u-boot.git] / board / shannon / u-boot.lds
index f4b0ade27319bbb0030684219be651f820a98d3b..d1fe8aa6fcbe2d221174dfa9edfdf5dbff1d961e 100644 (file)
@@ -26,28 +26,33 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text      :
        {
          cpu/sa1100/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 = .;
+
 }