summaryrefslogtreecommitdiffstats
path: root/arch/h8300
diff options
context:
space:
mode:
authorYoshinori Sato <ysato@users.sourceforge.jp>2015-11-15 23:11:09 +0900
committerYoshinori Sato <ysato@users.sourceforge.jp>2016-01-20 22:43:26 +0900
commit3724d3188980cc7416d81acc9bee21161ee20ebd (patch)
tree254eb41dd8404a9535a34b5c16321fcf7c0cc0e1 /arch/h8300
parent2c487121e3c4f87e82cff493872675bde52e47fc (diff)
downloadlinux-3724d3188980cc7416d81acc9bee21161ee20ebd.tar.gz
linux-3724d3188980cc7416d81acc9bee21161ee20ebd.tar.xz
h8300: zImage alignment fix
Missing alignment for .data section. Sometime bootup failed. Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Diffstat (limited to 'arch/h8300')
-rw-r--r--arch/h8300/boot/compressed/vmlinux.lds1
1 files changed, 1 insertions, 0 deletions
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.*)