projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c48712
)
h8300: zImage alignment fix
author
Yoshinori Sato
<
[email protected]
>
Sun, 15 Nov 2015 14:11:09 +0000
(23:11 +0900)
committer
Yoshinori Sato
<
[email protected]
>
Wed, 20 Jan 2016 13:43:26 +0000
(22:43 +0900)
Missing alignment for .data section.
Sometime bootup failed.
Signed-off-by: Yoshinori Sato <
[email protected]
>
arch/h8300/boot/compressed/vmlinux.lds
patch
|
blob
|
history
diff --git
a/arch/h8300/boot/compressed/vmlinux.lds
b/arch/h8300/boot/compressed/vmlinux.lds
index 44fd209db88a69b60b885464d8d36a4f5d9a3f47..c39dc95fbad8ed2c89406d10e74d5525102cf703 100644
(file)
--- 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.*)