]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/ixdp425/u-boot.lds
* Patches by Xianghua Xiao, 15 Oct 2003:
[karo-tx-uboot.git] / board / ixdp425 / u-boot.lds
index 23f4bd0b0e4b4f1c221aafd8b0e1b809004db490..3170aa0afb14535f42ed653ebbf32d8db878ec42 100644 (file)
@@ -26,29 +26,29 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-        . = 0x00000000;
+       . = 0x00000000;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        .text      :
        {
          cpu/ixp/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) }
 
        armboot_end_data = .;
 
-        . = ALIGN(4);
+       . = ALIGN(4);
        bss_start = .;
-        .bss : { *(.bss) }
+       .bss : { *(.bss) }
        bss_end = .;
 
        armboot_end = .;