projects
/
oweals
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
95cf83ebd1dc884f45392326e0243ac8416e96ba
[oweals/openwrt.git]
/
1
OUTPUT_ARCH(mips)
2
ENTRY(load_and_run)
3
SECTIONS {
4
. = BZ_TEXT_START;
5
.text : {
6
*(.text)
7
*(.rodata)
8
}
9
10
.data : {
11
*(.data)
12
}
13
14
.bss : {
15
*(.bss)
16
}
17
}