1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-14 16:31:07 +02:00

18 lines
151 B
Plaintext

OUTPUT_ARCH(mips)
ENTRY(startup)
SECTIONS {
. = TEXT_START;
.text : {
*(.text)
*(.rodata)
}
.data : {
*(.data)
}
.bss : {
*(.bss)
}
}