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
unify {de,}mangle_poll(), get rid of kernel-side POLL...
[cris-mirror.git]
/
arch
/
cris
/
boot
/
compressed
/
decompress_v10.lds
blob
d8326779dda21b31a0e3525cc89cb07f8418067e
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/* OUTPUT_FORMAT(elf32-us-cris) */
3
OUTPUT_FORMAT(elf32-cris)
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
}