~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/powerpc/boot/zImage.lds.S

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
EXTERN(_zimage_start)
4
4
SECTIONS
5
5
{
6
 
  _start = .;
7
6
  .text      :
8
7
  {
 
8
    _start = .;
9
9
    *(.text)
10
10
    *(.fixup)
 
11
    _etext = .;
11
12
  }
12
 
  _etext = .;
13
13
  . = ALIGN(4096);
14
14
  .data    :
15
15
  {
16
16
    *(.rodata*)
17
17
    *(.data*)
18
18
    *(.sdata*)
19
 
    __got2_start = .;
20
19
    *(.got2)
21
 
    __got2_end = .;
22
 
  }
 
20
  }
 
21
  .dynsym : { *(.dynsym) }
 
22
  .dynstr : { *(.dynstr) }
 
23
  .dynamic :
 
24
  {
 
25
    __dynamic_start = .;
 
26
    *(.dynamic)
 
27
  }
 
28
  .hash : { *(.hash) }
 
29
  .interp : { *(.interp) }
 
30
  .rela.dyn : { *(.rela*) }
23
31
 
24
32
  . = 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 = .;
 
33
  .kernel:dtb :
 
34
  {
 
35
    _dtb_start = .;
 
36
    *(.kernel:dtb)
 
37
    _dtb_end = .;
 
38
  }
 
39
 
 
40
  . = ALIGN(4096);
 
41
  .kernel:vmlinux.strip :
 
42
  {
 
43
    _vmlinux_start =  .;
 
44
    *(.kernel:vmlinux.strip)
 
45
    _vmlinux_end =  .;
 
46
  }
 
47
 
 
48
  . = ALIGN(4096);
 
49
  .kernel:initrd :
 
50
  {
 
51
    _initrd_start =  .;
 
52
    *(.kernel:initrd)
 
53
    _initrd_end =  .;
 
54
  }
 
55
 
 
56
  . = ALIGN(4096);
44
57
  .bss       :
45
58
  {
46
 
   *(.sbss)
47
 
   *(.bss)
 
59
    _edata  =  .;
 
60
    __bss_start = .;
 
61
    *(.sbss)
 
62
    *(.bss)
 
63
    *(COMMON)
 
64
    _end = . ;
48
65
  }
49
 
  . = ALIGN(4096);
50
 
  _end = . ;
51
66
}