Linux-2.6.33.2/arch/h8300/boot/compressed/vmlinux.lds

SECTIONS
{
        .text :
        {
        __stext = . ;
	__text = .;
	       *(.text.startup)
	       *(.text)
        __etext = . ;
        }

	.rodata :
	{
		*(.rodata)
	}
        .data :

        {
        __sdata = . ;
        ___data_start = . ;
                *(.data.*)
	}
        .bss :
        {
        . = ALIGN(0x4) ;
        __sbss = . ;
                *(.bss*)
        . = ALIGN(0x4) ;
        __ebss = . ;
        __end = . ;
        }
}