projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
powerpc/4xx: Add L2 cache node to AMCC Canyonlands dts file
[linux-2.6]
/
arch
/
powerpc
/
boot
/
zImage.lds.S
1
OUTPUT_ARCH(powerpc:common)
2
ENTRY(_zimage_start)
3
EXTERN(_zimage_start)
4
SECTIONS
5
{
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
24
. = ALIGN(8);
25
_dtb_start = .;
26
.kernel:dtb : { *(.kernel:dtb) }
27
_dtb_end = .;
28
29
. = ALIGN(4096);
30
_vmlinux_start = .;
31
.kernel:vmlinux.strip : { *(.kernel:vmlinux.strip) }
32
_vmlinux_end = .;
33
34
. = ALIGN(4096);
35
_initrd_start = .;
36
.kernel:initrd : { *(.kernel:initrd) }
37
_initrd_end = .;
38
39
. = ALIGN(4096);
40
_edata = .;
41
42
. = ALIGN(4096);
43
__bss_start = .;
44
.bss :
45
{
46
*(.sbss)
47
*(.bss)
48
}
49
. = ALIGN(4096);
50
_end = . ;
51
}