Skip to content

Commit

Permalink
m68k: Put .bss at the end of the data section
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Roman Zippel authored and Linus Torvalds committed Oct 14, 2008
1 parent 8fbbae6 commit 68abcee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/m68k/kernel/vmlinux-std.lds
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand All @@ -48,7 +48,7 @@ SECTIONS
_sinittext = .;
INIT_TEXT
_einittext = .;
}
} :data
.init.data : { INIT_DATA }
. = ALIGN(16);
__setup_start = .;
Expand Down

0 comments on commit 68abcee

Please sign in to comment.