1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-30 17:06:15 +02:00
openwrt-xburst/target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds

28 lines
269 B
Plaintext
Raw Normal View History

OUTPUT_ARCH(mips)
SECTIONS {
.text : {
_code_start = .;
*(.text)
*(.text.*)
*(.rodata)
*(.rodata.*)
}
.data : {
*(.data)
*(.data.*)
}
_code_end = .;
.bss : {
*(.bss)
*(.bss.*)
}
. = ALIGN(16);
. = . + 8192;
_stack = .;
workspace = .;
}