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 c39dc95fbad8ed2c89406d10e74d5525102cf703..ad848a72fd3f4e80b9586dbbd43b065713b8db40 100644 (file)
@@ -13,6 +13,7 @@ SECTIONS
        {
                *(.rodata)
        }
+        . = ALIGN(0x4) ;
         .data :
 
         {
@@ -21,9 +22,9 @@ SECTIONS
         ___data_start = . ;
                 *(.data.*)
        }
+        . = ALIGN(0x4) ;
         .bss :
         {
-        . = ALIGN(0x4) ;
         __sbss = . ;
                 *(.bss*)
         . = ALIGN(0x4) ;