uml.lds.S 2.4 KB
Newer Older
L
Linus Torvalds 已提交
1
#include <asm-generic/vmlinux.lds.h>
2
#include <asm/page.h>
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10

OUTPUT_FORMAT(ELF_FORMAT)
OUTPUT_ARCH(ELF_ARCH)
ENTRY(_start)
jiffies = jiffies_64;

SECTIONS
{
11
  /* This must contain the right address - not quite the default ELF one.*/
L
Linus Torvalds 已提交
12
  PROVIDE (__executable_start = START);
13 14 15 16 17 18
  /* Static binaries stick stuff here, like the sigreturn trampoline,
   * invisibly to objdump.  So, just make __binary_start equal to the very
   * beginning of the executable, and if there are unmapped pages after this,
   * they are forever unusable.
   */
  __binary_start = START;
L
Linus Torvalds 已提交
19

20
  . = START + SIZEOF_HEADERS;
L
Linus Torvalds 已提交
21

22
  _text = .;
23
  INIT_TEXT_SECTION(0)
24
  . = ALIGN(PAGE_SIZE);
25

L
Linus Torvalds 已提交
26 27
  .text      :
  {
28
    _stext = .;
29
    TEXT_TEXT
L
Linus Torvalds 已提交
30 31 32 33 34 35
    SCHED_TEXT
    LOCK_TEXT
    *(.fixup)
    /* .gnu.warning sections are handled specially by elf32.em.  */
    *(.gnu.warning)
    *(.gnu.linkonce.t*)
36
  }
37

38
  . = ALIGN(PAGE_SIZE);
39 40 41 42
  .syscall_stub : {
	__syscall_stub_start = .;
	*(.__syscall_stub*)
	__syscall_stub_end = .;
L
Linus Torvalds 已提交
43 44
  }

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
  /*
   * These are needed even in a static link, even if they wind up being empty.
   * Newer glibc needs these __rel{,a}_iplt_{start,end} symbols.
   */
  .rel.plt : {
	*(.rel.plt)
	PROVIDE_HIDDEN(__rel_iplt_start = .);
	*(.rel.iplt)
	PROVIDE_HIDDEN(__rel_iplt_end = .);
  }
  .rela.plt : {
	*(.rela.plt)
	PROVIDE_HIDDEN(__rela_iplt_start = .);
	*(.rela.iplt)
	PROVIDE_HIDDEN(__rela_iplt_end = .);
  }

62
  #include <asm/common.lds.S>
L
Linus Torvalds 已提交
63

64
  __init_begin = .;
65
  init.data : { INIT_DATA }
66 67
  __init_end = .;

L
Linus Torvalds 已提交
68 69
  .data    :
  {
70
    INIT_TASK_DATA(KERNEL_STACK_SIZE)
J
Jeff Dike 已提交
71
    . = ALIGN(KERNEL_STACK_SIZE);
72
    *(.data..init_irqstack)
73
    DATA_DATA
L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
    *(.gnu.linkonce.d*)
    CONSTRUCTORS
  }
  .data1   : { *(.data1) }
  .ctors         :
  {
    *(.ctors)
  }
  .dtors         :
  {
    *(.dtors)
  }

  .got           : { *(.got.plt) *(.got) }
  .dynamic       : { *(.dynamic) }
89 90
  .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
L
Linus Torvalds 已提交
91 92 93 94 95 96
  /* We want the small data sections together, so single-instruction offsets
     can access them all, and initialized data all before uninitialized, so
     we can shorten the on-disk segment size.  */
  .sdata     : { *(.sdata) }
  _edata  =  .;
  PROVIDE (edata = .);
97
  . = ALIGN(PAGE_SIZE);
98 99 100 101
  __bss_start = .;
  PROVIDE(_bss_start = .);
  SBSS(0)
  BSS(0)
102
   __bss_stop = .;
103
  _end = .;
L
Linus Torvalds 已提交
104
  PROVIDE (end = .);
105 106 107 108

  STABS_DEBUG

  DWARF_DEBUG
109

110
  DISCARDS
L
Linus Torvalds 已提交
111
}