diff options
Diffstat (limited to 'arch/ppc/boot/ld.script')
| -rw-r--r-- | arch/ppc/boot/ld.script | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ppc/boot/ld.script b/arch/ppc/boot/ld.script index 9d4de80f8ba3..742469efe775 100644 --- a/arch/ppc/boot/ld.script +++ b/arch/ppc/boot/ld.script @@ -39,7 +39,7 @@ SECTIONS PROVIDE (etext = .); /* Read-write section, merged into data segment: */ - . = (. + 0x0FFF) & 0xFFFFF000; + . = ALIGN(8); .data : { *(.data) @@ -69,6 +69,7 @@ SECTIONS _edata = .; PROVIDE (edata = .); + . = ALIGN(8); __bss_start = .; .bss : { |
