mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-23 04:48:22 +00:00
55fb6f3a05
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37016
11 lines
108 B
Plaintext
11 lines
108 B
Plaintext
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
startup = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
}
|