repo.or.cz
/
maemo-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix red in bootloaders
[maemo-rb.git]
/
firmware
/
test
/
i2c
/
app.lds
blob
192ee1d2a4c1946a143c7c6d6679d8b833187205
1
ENTRY(start)
2
OUTPUT_FORMAT(elf32-sh)
3
SECTIONS
4
{
5
.text 0x09010000 :
6
{
7
*(.vectors)
8
. = ALIGN(0x200);
9
*(.init.text)
10
}
11
12
.text :
13
{
14
*(.text)
15
}
16
17
.data :
18
{
19
*(.rodata)
20
*(.data)
21
}
22
23
.rodata :
24
{
25
*(.rodata)
26
}
27
28
.bss :
29
{
30
_edata = .;
31
*(.bss)
32
*(COMMON)
33
_end = .;
34
_stack = . + 0x80000;
35
}
36
}