]> git.sur5r.net Git - u-boot/blobdiff - board/incaip/u-boot.lds
* Patch by Matthew S. McClintock, 14 Apr 2004:
[u-boot] / board / incaip / u-boot.lds
index 3c9ca8906170bb79ce03878e9968fffce3421c76..a2d19a84c9eae9195799605bbd7b2f0338555b2f 100644 (file)
@@ -29,19 +29,19 @@ OUTPUT_ARCH(mips)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text       :
        {
          *(.text)
        }
 
-        . = ALIGN(4);
-        .rodata  : { *(.rodata) }
+       . = ALIGN(4);
+       .rodata  : { *(.rodata) }
 
-        . = ALIGN(4);
-        .data  : { *(.data) }
+       . = ALIGN(4);
+       .data  : { *(.data) }
 
        . = ALIGN(4);
        .sdata  : { *(.sdata) }
@@ -54,11 +54,15 @@ SECTIONS
 
        .sdata  : { *(.sdata) }
 
+       __u_boot_cmd_start = .;
+       .u_boot_cmd : { *(.u_boot_cmd) }
+       __u_boot_cmd_end = .;
+
        uboot_end_data = .;
        num_got_entries = (__got_end - __got_start) >> 2;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .sbss  : { *(.sbss) }
-        .bss  : { *(.bss) }
+       .bss  : { *(.bss) }
        uboot_end = .;
 }