repo.or.cz
/
tomato
/
davidwu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct PPTP server firewall rules chain.
[tomato/davidwu.git]
/
release
/
src-rt
/
shared
/
xip.lds.in
blob
a6e623c34a7a2d3109a8874e87a2793dac079122
1
OUTPUT_ARCH(TARGET_ARCH)
2
ENTRY(startup)
3
SECTIONS {
4
. = TEXT_START;
5
.text : {
6
_ftext = .;
7
text_start = .;
8
*(.text.startup)
9
*(.init)
10
*(.textini2.*)
11
*(.text)
12
*(.text.*)
13
*(.fini)
14
*(.glue_7)
15
*(.glue_7t)
16
*(.rdata)
17
*(.rdata.*)
18
*(.rodata)
19
*(.rodata.*)
20
. = ALIGN(4);
21
_etext = .;
22
text_end = .;
23
}
24
25
. = DATA_START;
26
.data : AT(ADDR(.text)+SIZEOF(.text)) {
27
_fdata = .;
28
data_start = .;
29
*(.data)
30
*(.dataini2.*)
31
*(.data.*)
32
*(.sdata)
33
. = ALIGN(4);
34
_edata = .;
35
data_end = .;
36
}
37
38
.bss : {
39
_fbss = .;
40
bss_start = .;
41
*(.bss)
42
*(.bss.*)
43
*(.sbss)
44
*(.scommon)
45
*(COMMON)
46
bss_end = .;
47
}
48
49
_end = .;
50
}