diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2015-11-15 09:11:09 -0500 |
---|---|---|
committer | Yoshinori Sato <ysato@users.sourceforge.jp> | 2016-01-20 08:43:26 -0500 |
commit | 3724d3188980cc7416d81acc9bee21161ee20ebd (patch) | |
tree | 254eb41dd8404a9535a34b5c16321fcf7c0cc0e1 /arch/h8300 | |
parent | 2c487121e3c4f87e82cff493872675bde52e47fc (diff) |
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.lds | 1 |
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 | |||
16 | .data : | 16 | .data : |
17 | 17 | ||
18 | { | 18 | { |
19 | . = ALIGN(0x4) ; | ||
19 | __sdata = . ; | 20 | __sdata = . ; |
20 | ___data_start = . ; | 21 | ___data_start = . ; |
21 | *(.data.*) | 22 | *(.data.*) |