h8300: zImage alignment fix
authorYoshinori Sato <ysato@users.sourceforge.jp>
Sun, 15 Nov 2015 14:11:09 +0000 (23:11 +0900)
committerYoshinori Sato <ysato@users.sourceforge.jp>
Wed, 20 Jan 2016 13:43:26 +0000 (22:43 +0900)
Missing alignment for .data section.
Sometime bootup failed.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
arch/h8300/boot/compressed/vmlinux.lds

index 44fd209db88a69b60b885464d8d36a4f5d9a3f47..c39dc95fbad8ed2c89406d10e74d5525102cf703 100644 (file)
@@ -16,6 +16,7 @@ SECTIONS
         .data :
 
         {
+        . = ALIGN(0x4) ;
         __sdata = . ;
         ___data_start = . ;
                 *(.data.*)
This page took 0.037618 seconds and 5 git commands to generate.