projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
more devfs related bugs
[openwrt.git]
/
target
/
linux
/
ar7-2.4
/
image
/
src
/
ld.script.in
1
OUTPUT_FORMAT("@@OUTPUT_FORMAT@@")
2
OUTPUT_ARCH(mips)
3
ENTRY(tikernelunzip)
4
SECTIONS
5
{
6
7
/* Allocate memory space on top of kernel bss space */
8
. = 0x94200000;
9
.text :
10
{
11
*(.text)
12
*(.rodata)
13
*(.rodata1)
14
*(.gnu.warning)
15
*(.text.init)
16
*(.data.init)
17
}
18
19
.data :
20
{
21
*(*)
22
}
23
24
.bss :
25
{
26
*(.dynbss)
27
*(COMMON)
28
*(.bss)
29
*(.sbss)
30
*(.scommon)
31
. = ALIGN (0x8000);
32
workspace = .;
33
}
34
}
This page took
0.047856 seconds
and
5
git commands to generate.