1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-23 02:20:22 +03:00
openwrt-xburst/openwrt/target/linux/image/aruba/lzma-loader/src/lzma.lds

24 lines
304 B
Plaintext
Raw Normal View History

OUTPUT_ARCH(mips)
ENTRY(_start)
SECTIONS
{
/* Read-only sections, merged into text segment: */
. = 0x81000000;
.text :
{
_ftext = . ;
*(.text)
*(.rodata)
lzma_start = .;
kernel.o
lzma_end = .;
} =0
.reginfo : { *(.reginfo) }
.bss :
{
*(.bss)
}
}