repo.or.cz
/
openocd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
server: warn if user changes server port after init
[openocd.git]
/
testing
/
examples
/
ledtest-imx31pdk
/
ldscript
blob
d6f60d6fad60ba911e7d0ce3256ae0d733c45505
1
SECTIONS
2
{
3
. = 0x80000100;
4
.text : { *(.text) }
5
.data ALIGN(0x10): { *(.data) }
6
.bss ALIGN(0x10): {
7
__bss_start__ = ABSOLUTE(.);
8
*(.bss)
9
. += 0x100;
10
}
11
__bss_end__ = .;
12
PROVIDE (__stack = .);
13
_end = .;
14
.debug_info 0 : { *(.debug_info) }
15
.debug_abbrev 0 : { *(.debug_abbrev) }
16
.debug_line 0 : { *(.debug_line) }
17
.debug_frame 0 : { *(.debug_frame) }
18
}