mirror of https://github.com/hak5/openwrt.git
28 lines
269 B
Plaintext
28 lines
269 B
Plaintext
|
OUTPUT_ARCH(mips)
|
||
|
SECTIONS {
|
||
|
.text : {
|
||
|
_code_start = .;
|
||
|
*(.text)
|
||
|
*(.text.*)
|
||
|
*(.rodata)
|
||
|
*(.rodata.*)
|
||
|
}
|
||
|
|
||
|
.data : {
|
||
|
*(.data)
|
||
|
*(.data.*)
|
||
|
}
|
||
|
_code_end = .;
|
||
|
|
||
|
.bss : {
|
||
|
*(.bss)
|
||
|
*(.bss.*)
|
||
|
}
|
||
|
|
||
|
. = ALIGN(16);
|
||
|
. = . + 8192;
|
||
|
_stack = .;
|
||
|
|
||
|
workspace = .;
|
||
|
}
|