]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/smdk2410/u-boot.lds
* Code cleanup:
[people/ms/u-boot.git] / board / smdk2410 / u-boot.lds
index 8c9c218ccab3ee4701ae8636bbf9c361e7854cc3..0cf076ace1267d4c4c92c4f759112adbdb5a3815 100644 (file)
@@ -27,28 +27,34 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text      :
        {
          cpu/arm920t/start.o   (.text)
          *(.text)
        }
 
-        . = ALIGN(4);
-        .rodata : { *(.rodata) }
+       . = ALIGN(4);
+       .rodata : { *(.rodata) }
 
-        . = ALIGN(4);
-        .data : { *(.data) }
+       . = ALIGN(4);
+       .data : { *(.data) }
+
+       . = ALIGN(4);
+       .got : { *(.got) }
+
+  __u_boot_cmd_start = .;
+  .u_boot_cmd : { *(.u_boot_cmd) }
+  __u_boot_cmd_end = .;
 
-        . = ALIGN(4);
-        .got : { *(.got) }
 
        armboot_end_data = .;
 
-        . = ALIGN(4);
-        .bss : { *(.bss) }
+       . = ALIGN(4);
+       .bss : { *(.bss) }
 
        armboot_end = .;
+
 }