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
Linux 2.6.19-rc6
[cris-mirror.git]
/
arch
/
powerpc
/
boot
/
zImage.coff.lds.S
blob
05f32388b953026924c90834b13a838faabbda35
1
OUTPUT_ARCH(powerpc:common)
2
ENTRY(_start)
3
SECTIONS
4
{
5
. = (5*1024*1024);
6
_start = .;
7
.text :
8
{
9
*(.text)
10
*(.fixup)
11
}
12
_etext = .;
13
. = ALIGN(4096);
14
.data :
15
{
16
*(.rodata*)
17
*(.data*)
18
*(__builtin_*)
19
*(.sdata*)
20
__got2_start = .;
21
*(.got2)
22
__got2_end = .;
23
24
_vmlinux_start = .;
25
*(.kernel:vmlinux.strip)
26
_vmlinux_end = .;
27
28
_initrd_start = .;
29
*(.kernel:initrd)
30
_initrd_end = .;
31
}
32
33
. = ALIGN(4096);
34
_edata = .;
35
__bss_start = .;
36
.bss :
37
{
38
*(.sbss)
39
*(.bss)
40
}
41
_end = . ;
42
43
/DISCARD/ :
44
{
45
*(.comment)
46
}
47
}