mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-12 05:23:10 +02:00
21 lines
253 B
Plaintext
21 lines
253 B
Plaintext
|
OUTPUT_ARCH(mips)
|
||
|
ENTRY(_start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
/* Read-only sections, merged into text segment: */
|
||
|
. = @LOADADDR@;
|
||
|
.text :
|
||
|
{
|
||
|
_ftext = . ;
|
||
|
*(.text)
|
||
|
*(.rodata)
|
||
|
} =0
|
||
|
|
||
|
.reginfo : { *(.reginfo) }
|
||
|
|
||
|
.bss :
|
||
|
{
|
||
|
*(.bss)
|
||
|
}
|
||
|
}
|