mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-13 12:38:27 +02:00
21 lines
186 B
Plaintext
21 lines
186 B
Plaintext
|
OUTPUT_ARCH(mips)
|
||
|
ENTRY(entry)
|
||
|
SECTIONS {
|
||
|
. = BZ_TEXT_START;
|
||
|
.text : {
|
||
|
*(.text.entry)
|
||
|
*(.text)
|
||
|
*(.rodata)
|
||
|
}
|
||
|
|
||
|
.data : {
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
.bss : {
|
||
|
*(.bss)
|
||
|
}
|
||
|
|
||
|
workspace = .;
|
||
|
}
|