mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-03 12:34:19 +00:00
21 lines
186 B
Plaintext
21 lines
186 B
Plaintext
|
OUTPUT_ARCH(mips)
|
||
|
ENTRY(entry)
|
||
|
SECTIONS {
|
||
|
. = BZ_TEXT_START;
|
||
|
.text : {
|
||
|
*(.text.entry)
|
||
|
*(.text)
|
||
|
*(.rodata)
|
||
|
}
|
||
|
|
||
|
.data : {
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
.bss : {
|
||
|
*(.bss)
|
||
|
}
|
||
|
|
||
|
workspace = .;
|
||
|
}
|