1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 19:21:39 +03:00
openwrt-xburst/target/linux/adm5120/image/lzma-loader/src/loader.lds

30 lines
302 B
Plaintext

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