repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git]
/
arch
/
cris
/
boot
/
compressed
/
decompress_v32.lds
blob
91d311c243edc6c2b33f3ed34dfacbdd850b45c2
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*#OUTPUT_FORMAT(elf32-us-cris) */
3
OUTPUT_ARCH (crisv32)
4
5
MEMORY
6
{
7
dram : ORIGIN = 0x40700000,
8
LENGTH = 0x00100000
9
}
10
11
SECTIONS
12
{
13
.text :
14
{
15
_stext = . ;
16
*(.text)
17
*(.rodata)
18
*(.rodata.*)
19
_etext = . ;
20
} > dram
21
.data :
22
{
23
*(.data)
24
_edata = . ;
25
} > dram
26
.bss :
27
{
28
*(.bss)
29
_end = ALIGN( 0x10 ) ;
30
} > dram
31
}