mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
powerpc/boot: Fix zImage TOC alignment
commit 97ee351b50 upstream.
Recent toolchains force the TOC to be 256 byte aligned. We need to
enforce this alignment in the zImage linker script, otherwise pointers
to our TOC variables (__toc_start) could be incorrect. If the actual
start of the TOC and __toc_start don't have the same value we crash
early in the zImage wrapper.
Suggested-by: Alan Modra <amodra@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
602ef5c5b0
commit
fd6fb9243d
@@ -68,6 +68,7 @@ SECTIONS
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PPC64_BOOT_WRAPPER
|
#ifdef CONFIG_PPC64_BOOT_WRAPPER
|
||||||
|
. = ALIGN(256);
|
||||||
.got :
|
.got :
|
||||||
{
|
{
|
||||||
__toc_start = .;
|
__toc_start = .;
|
||||||
|
|||||||
Reference in New Issue
Block a user