mirror of https://github.com/hak5/openwrt.git
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 = .;
|
||
|
}
|