projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ar71xx: add helper function to setup LED pin and GPIO on the AP91 based boards
[openwrt.git]
/
target
/
linux
/
adm5120
/
image
/
lzma-loader
/
src
/
loader.lds
1
OUTPUT_ARCH(mips)
2
SECTIONS {
3
.text : {
4
_code_start = .;
5
*(.text)
6
*(.text.*)
7
*(.rodata)
8
*(.rodata.*)
9
. = ALIGN(16);
10
*(.data.lzma)
11
}
12
13
.data : {
14
*(.data)
15
*(.data.*)
16
}
17
_code_end = .;
18
19
.bss : {
20
*(.bss)
21
*(.bss.*)
22
}
23
24
. = ALIGN(16);
25
. = . + 8192;
26
_stack = .;
27
28
workspace = .;
29
}
This page took
0.054266 seconds
and
5
git commands to generate.