1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-23 04:41:06 +02:00

21 lines
253 B
Plaintext
Raw Normal View History

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