mirror of
https://github.com/outbackdingo/openwrt.git
synced 2026-02-11 13:10:32 +00:00
11 lines
108 B
Plaintext
11 lines
108 B
Plaintext
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
startup = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
}
|