]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - examples/nios.lds
* Patches by Xianghua Xiao, 15 Oct 2003:
[karo-tx-uboot.git] / examples / nios.lds
index 105999f5489972310c7a0ef30d754189911a5531..527eb3ad45f5d2e3829640e5cb67b7079c8157ce 100644 (file)
@@ -32,17 +32,17 @@ SECTIONS
        {
          *(.text)
        }
-        __text_end = .;
+       __text_end = .;
 
-        . = ALIGN(4);
-        .rodata :
+       . = ALIGN(4);
+       .rodata :
        {
                *(.rodata)
        }
        __rodata_end = .;
 
-        . = ALIGN(4);
-        .data :
+       . = ALIGN(4);
+       .data :
        {
                *(.data)
        }
@@ -50,12 +50,11 @@ SECTIONS
        __data_end = .;
 
        __bss_start = .;
-        . = ALIGN(4);
-        .bss :
+       . = ALIGN(4);
+       .bss :
        {
                *(.bss)
        }
        . = ALIGN(4);
        __bss_end = .;
 }
-