Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit af3da579 authored by Yoshinori Sato's avatar Yoshinori Sato
Browse files

h8300: zImage alignment fix



Missing alignment for .data section.
Sometime bootup failed.

Signed-off-by: default avatarYoshinori Sato <ysato@users.sourceforge.jp>
parent c4eb32b1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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) ;