mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-19 11:16:32 +00:00
da1bb88a2b
SVN-Revision: 21952
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)
|
|
}
|
|
}
|