mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-01 21:04:09 +01:00
17 lines
151 B
Text
17 lines
151 B
Text
OUTPUT_ARCH(mips)
|
|
ENTRY(startup)
|
|
SECTIONS {
|
|
. = TEXT_START;
|
|
.text : {
|
|
*(.text)
|
|
*(.rodata)
|
|
}
|
|
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
}
|
|
}
|