]> git.sur5r.net Git - u-boot/blobdiff - examples/nios.lds
Merge with git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx/.git
[u-boot] / examples / nios.lds
index 105999f5489972310c7a0ef30d754189911a5531..dd5bfad7b1141e2e5dda8cf91deb6c5f087dd484 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,12 @@ SECTIONS
        __data_end = .;
 
        __bss_start = .;
-        . = ALIGN(4);
-        .bss :
+       . = ALIGN(4);
+       .bss :
        {
                *(.bss)
        }
        . = ALIGN(4);
        __bss_end = .;
+       _end = .;
 }
-