repo.or.cz
/
linux-2.6
/
linux-mips
/
linux-dm7025.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[MIPS] Use common definitions from asm-generic/signal.h
[linux-2.6/linux-mips/linux-dm7025.git]
/
arch
/
powerpc
/
boot
/
zImage.coff.lds
blob
6016251a1a2c73bcc35be2b697c469346683aa15
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
*(.sdata*)
19
__got2_start = .;
20
*(.got2)
21
__got2_end = .;
22
23
_vmlinux_start = .;
24
*(.kernel:vmlinux.strip)
25
_vmlinux_end = .;
26
27
_initrd_start = .;
28
*(.kernel:initrd)
29
_initrd_end = .;
30
}
31
32
. = ALIGN(4096);
33
_edata = .;
34
__bss_start = .;
35
.bss :
36
{
37
*(.sbss)
38
*(.bss)
39
}
40
_end = . ;
41
42
/DISCARD/ :
43
{
44
*(.comment)
45
}
46
}