[POWERPC] Make sure interrupt enable gets restored properly
[deliverable/linux.git] / arch / powerpc / boot / zImage.coff.lds.S
CommitLineData
66a45dd3
PM
1OUTPUT_ARCH(powerpc:common)
2ENTRY(_start)
3SECTIONS
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*)
54c99412 18 *(__builtin_*)
66a45dd3
PM
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}
This page took 0.097798 seconds and 5 git commands to generate.