mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-04 13:04:22 +00:00
812f026323
SVN-Revision: 21945
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 = .;
|
|
}
|