aboutsummaryrefslogtreecommitdiff
path: root/arch/m68k/kernel/vmlinux-std.lds
diff options
context:
space:
mode:
authorRoman Zippel <zippel@linux-m68k.org>2008-10-13 21:58:49 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2008-10-14 10:23:26 -0700
commit68abceef1051b254964995c6acabaac95cec9c35 (patch)
tree587a788f5291376dab1efa0f1ed0daaa0e7a0c1f /arch/m68k/kernel/vmlinux-std.lds
parent8fbbae657305f83ed009143c4c7a8737d75621b2 (diff)
m68k: Put .bss at the end of the data section
Put .bss at the end of the data section Signed-off-by: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k/kernel/vmlinux-std.lds')
-rw-r--r--arch/m68k/kernel/vmlinux-std.lds8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/m68k/kernel/vmlinux-std.lds b/arch/m68k/kernel/vmlinux-std.lds
index 99b0784c055..bc63ff6cdb3 100644
--- a/arch/m68k/kernel/vmlinux-std.lds
+++ b/arch/m68k/kernel/vmlinux-std.lds
@@ -34,10 +34,10 @@ SECTIONS
CONSTRUCTORS
}
- .bss : { *(.bss) } /* BSS */
-
. = ALIGN(16);
- .data.cacheline_aligned : { *(.data.cacheline_aligned) } :data
+ .data.cacheline_aligned : { *(.data.cacheline_aligned) }
+
+ .bss : { *(.bss) } /* BSS */
_edata = .; /* End of data section */
@@ -48,7 +48,7 @@ SECTIONS
_sinittext = .;
INIT_TEXT
_einittext = .;
- }
+ } :data
.init.data : { INIT_DATA }
. = ALIGN(16);
__setup_start = .;