linux/arch/h8300/boot/compressed/vmlinux.lds
Yoshinori Sato af3da5798d h8300: zImage alignment fix
Missing alignment for .data section.
Sometime bootup failed.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
2016-01-20 22:43:26 +09:00

35 lines
508 B
Plaintext

SECTIONS
{
.text :
{
__stext = . ;
__text = .;
*(.text..startup)
*(.text)
__etext = . ;
}
.rodata :
{
*(.rodata)
}
. = ALIGN(0x4) ;
.data :
{
. = ALIGN(0x4) ;
__sdata = . ;
___data_start = . ;
*(.data.*)
}
. = ALIGN(0x4) ;
.bss :
{
__sbss = . ;
*(.bss*)
. = ALIGN(0x4) ;
__ebss = . ;
}
_end = . ;
}