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
Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git]
/
arch
/
cris
/
arch-v10
/
boot
/
compressed
/
decompress.ld
blob
0b0a14fe61777c4352788ab2ae6b4db6e6f59ccb
1
OUTPUT_FORMAT(elf32-us-cris)
2
3
MEMORY
4
{
5
dram : ORIGIN = 0x40700000,
6
LENGTH = 0x00100000
7
}
8
9
SECTIONS
10
{
11
.text :
12
{
13
_stext = . ;
14
*(.text)
15
*(.rodata)
16
*(.rodata.*)
17
_etext = . ;
18
} > dram
19
.data :
20
{
21
*(.data)
22
_edata = . ;
23
} > dram
24
.bss :
25
{
26
*(.bss)
27
_end = ALIGN( 0x10 ) ;
28
} > dram
29
}