diff options
| author | Sean MacLennan <smaclennan@pikatech.com> | 2009-09-29 02:00:06 -0400 |
|---|---|---|
| committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-10-14 01:58:39 -0400 |
| commit | 5be2a213b172bb65b21a6f7271b335832d88793c (patch) | |
| tree | 2162ff887c8c6b8e1e05f88aef9148cc916e0db9 | |
| parent | cf50f447b22f540d738eb8ca09c3b3972a9ba0ac (diff) | |
powerpc: warning: allocated section `.data_nosave' not in segment
We need to align before the output section. Having the align inside
the output section causes the linker to put some filler in there,
which makes it a non-empty section, but this section isn't assigned to
a segment so you get a warning from the linker.
Signed-off-by: Sean MacLennan <smaclennan@pikatech.com>
Acked-by: Segher Boessenkool <segher@kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
| -rw-r--r-- | arch/powerpc/kernel/vmlinux.lds.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index f56429362a12..27735a7ac12b 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S | |||
| @@ -236,6 +236,7 @@ SECTIONS | |||
| 236 | READ_MOSTLY_DATA(L1_CACHE_BYTES) | 236 | READ_MOSTLY_DATA(L1_CACHE_BYTES) |
| 237 | } | 237 | } |
| 238 | 238 | ||
| 239 | . = ALIGN(PAGE_SIZE); | ||
| 239 | .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) { | 240 | .data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) { |
| 240 | NOSAVE_DATA | 241 | NOSAVE_DATA |
| 241 | } | 242 | } |
