repo.or.cz
/
wrt350n-kernel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PATCH] Remove hosthw.h from rio (unused file)
[wrt350n-kernel.git]
/
arch
/
mips
/
dec
/
boot
/
ld.ecoff
blob
aaa633dfb5f734a2dfc8859109d3d11ed9f589e3
1
OUTPUT_FORMAT("ecoff-littlemips")
2
OUTPUT_ARCH(mips)
3
ENTRY(dec_entry)
4
SECTIONS
5
{
6
. = 0x80200000;
7
8
.text :
9
{
10
_ftext = .;
11
*(.text)
12
*(.fixup)
13
}
14
.rdata :
15
{
16
*(.rodata .rodata.* .rdata)
17
}
18
.data :
19
{
20
. = ALIGN(0x1000);
21
ramdisk.img (.data)
22
*(.data)
23
}
24
.sdata :
25
{
26
*(.sdata)
27
}
28
_gp = .;
29
.sbss :
30
{
31
*(.sbss)
32
*(.scommon)
33
}
34
.bss :
35
{
36
*(.dynbss)
37
*(.bss)
38
*(COMMON)
39
}
40
/DISCARD/ : {
41
*(.reginfo .mdebug .note)
42
}
43
}