mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-15 23:22:19 +00:00
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)
|
|
}
|
|
}
|