mirror of https://github.com/hak5/openwrt.git
18 lines
151 B
Plaintext
18 lines
151 B
Plaintext
|
OUTPUT_ARCH(mips)
|
||
|
ENTRY(startup)
|
||
|
SECTIONS {
|
||
|
. = TEXT_START;
|
||
|
.text : {
|
||
|
*(.text)
|
||
|
*(.rodata)
|
||
|
}
|
||
|
|
||
|
.data : {
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
.bss : {
|
||
|
*(.bss)
|
||
|
}
|
||
|
}
|