mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-06 05:54:25 +00:00
11 lines
108 B
Plaintext
11 lines
108 B
Plaintext
|
OUTPUT_ARCH(mips)
|
||
|
SECTIONS {
|
||
|
.text : {
|
||
|
startup = .;
|
||
|
*(.text)
|
||
|
*(.text.*)
|
||
|
*(.data)
|
||
|
*(.data.*)
|
||
|
}
|
||
|
}
|