diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2015-11-15 23:11:09 +0900 |
---|---|---|
committer | Yoshinori Sato <ysato@users.sourceforge.jp> | 2016-01-20 22:43:26 +0900 |
commit | 3724d3188980cc7416d81acc9bee21161ee20ebd (patch) | |
tree | 254eb41dd8404a9535a34b5c16321fcf7c0cc0e1 /arch/h8300/boot | |
parent | 2c487121e3c4f87e82cff493872675bde52e47fc (diff) | |
download | linux-3724d3188980cc7416d81acc9bee21161ee20ebd.tar.bz2 |
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/boot')
-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 .data : { + . = ALIGN(0x4) ; __sdata = . ; ___data_start = . ; *(.data.*) |