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
/
rescue
/
rescue_v10.lds
blob
e58a53f917287f8d072f2708a607fa79d14b74db
1
/* SPDX-License-Identifier: GPL-2.0 */
2
MEMORY
3
{
4
flash : ORIGIN = 0x00000000,
5
LENGTH = 0x00100000
6
}
7
8
SECTIONS
9
{
10
.text :
11
{
12
stext = . ;
13
*(.text)
14
etext = . ;
15
} > flash
16
.data :
17
{
18
*(.data)
19
edata = . ;
20
} > flash
21
}