projects
/
rpi-open-firmware.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Correct typo
[rpi-open-firmware.git]
/
linker.lds
1
SECTIONS
2
{
3
. = 0x0;
4
5
_text = .;
6
7
.text : {
8
*(.text)
9
*(.text.*)
10
*(.gnu.warning)
11
}
12
13
_etext = .;
14
15
.rodata : { *(.rodata) *(.rodata.*) }
16
. = ALIGN(4096);
17
_erodata = .;
18
19
. = ALIGN(32 / 8);
20
21
PROVIDE (__init_array_start = .);
22
.init_array : {
23
*(.init_array)
24
*(.init_array.*)
25
}
26
PROVIDE (__init_array_end = .);
27
28
.data : { /* Data */
29
*(.data)
30
}
31
32
.bss : {
33
_edata = .;
34
__bss_start = .;
35
*(.bss)
36
}
37
38
. = ALIGN(32 / 8);
39
_end = . ;
40
}
This page took
0.084251 seconds
and
4
git commands to generate.