mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 00:11:13 +00:00
13 lines
157 B
Plaintext
13 lines
157 B
Plaintext
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
|
||
|
OUTPUT_ARCH(mips)
|
||
|
SECTIONS {
|
||
|
.text : {
|
||
|
startup = .;
|
||
|
*(.text)
|
||
|
*(.text.*)
|
||
|
*(.data)
|
||
|
*(.data.*)
|
||
|
}
|
||
|
}
|