55fb6f3a05
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37016
10 lines
108 B
Text
10 lines
108 B
Text
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
startup = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
}
|