]> git.sur5r.net Git - u-boot/blobdiff - examples/nios.lds
sh: sh7785lcr: Moved sh7785lcr board to board/renesas
[u-boot] / examples / nios.lds
index 105999f5489972310c7a0ef30d754189911a5531..18072f71b1e48d70f5d26b39700e02e3bfcf91fc 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 (NOLOAD) :
        {
                *(.bss)
        }
        . = ALIGN(4);
        __bss_end = .;
+       _end = .;
 }
-