mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-11 08:55:00 +02:00
18 lines
151 B
Plaintext
18 lines
151 B
Plaintext
|
OUTPUT_ARCH(mips)
|
||
|
ENTRY(startup)
|
||
|
SECTIONS {
|
||
|
. = TEXT_START;
|
||
|
.text : {
|
||
|
*(.text)
|
||
|
*(.rodata)
|
||
|
}
|
||
|
|
||
|
.data : {
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
.bss : {
|
||
|
*(.bss)
|
||
|
}
|
||
|
}
|