From: Yoshinori Sato Date: Sun, 15 Nov 2015 14:11:09 +0000 (+0900) Subject: h8300: zImage alignment fix X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3724d3188980cc7416d81acc9bee21161ee20ebd;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git h8300: zImage alignment fix Missing alignment for .data section. Sometime bootup failed. Signed-off-by: Yoshinori Sato --- diff --git a/arch/h8300/boot/compressed/vmlinux.lds b/arch/h8300/boot/compressed/vmlinux.lds index 44fd209db88a..c39dc95fbad8 100644 --- a/arch/h8300/boot/compressed/vmlinux.lds +++ b/arch/h8300/boot/compressed/vmlinux.lds @@ -16,6 +16,7 @@ SECTIONS .data : { + . = ALIGN(0x4) ; __sdata = . ; ___data_start = . ; *(.data.*)