From: Geoff Levand Date: Fri, 4 Jun 2021 15:58:25 +0000 (+0000) Subject: powerpc/ps3: Re-align DTB in image X-Git-Tag: v5.14-rc1~104^2~188 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ff4a825e4a24cdf7f840461ced6283bf865ab7be;p=thirdparty%2Fkernel%2Flinux.git powerpc/ps3: Re-align DTB in image Change the PS3 linker script to align the DTB at 8 bytes, the same alignment as that of the of the 'generic' powerpc linker script. Signed-off-by: Geoff Levand Signed-off-by: Michael Ellerman Link: https://lore.kernel.org/r/245897ed65e402686a4b114ba618e935cb5c6506.1622822173.git.geoff@infradead.org --- diff --git a/arch/powerpc/boot/zImage.ps3.lds.S b/arch/powerpc/boot/zImage.ps3.lds.S index 7b2ff2eaa73a6..d0ffb493614d5 100644 --- a/arch/powerpc/boot/zImage.ps3.lds.S +++ b/arch/powerpc/boot/zImage.ps3.lds.S @@ -8,7 +8,7 @@ SECTIONS .kernel:vmlinux.bin : { *(.kernel:vmlinux.bin) } _vmlinux_end = .; - . = ALIGN(4096); + . = ALIGN(8); _dtb_start = .; .kernel:dtb : { *(.kernel:dtb) } _dtb_end = .;