blob: 61f10573a2f9e9971c375e1b3bd5bf0604d155e1 [file] [log] [blame]
OUTPUT_FORMAT(binary)
SECTIONS
{
. = 1M;
stext = .;
.text : { *(.init) *(.text) *(.text.*) }
. = ALIGN(4K);
.data : { *(.data) }
. = ALIGN(16);
.rodata : { *(.rodata) }
. = ALIGN(16);
.bss : { *(.bss) }
. = ALIGN(4K);
edata = .;
}