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