uml.lds.S 1.9 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 = .;
L
Linus Torvalds 已提交
23 24
  _stext = .;
  __init_begin = .;
25
  INIT_TEXT_SECTION(PAGE_SIZE)
26
  . = ALIGN(PAGE_SIZE);
27

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

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

  #include "asm/common.lds.S"

48
  init.data : { INIT_DATA }
L
Linus Torvalds 已提交
49 50
  .data    :
  {
51
    INIT_TASK_DATA(KERNEL_STACK_SIZE)
J
Jeff Dike 已提交
52 53
    . = ALIGN(KERNEL_STACK_SIZE);
    *(.data.init_irqstack)
54
    DATA_DATA
L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
    *(.gnu.linkonce.d*)
    CONSTRUCTORS
  }
  .data1   : { *(.data1) }
  .ctors         :
  {
    *(.ctors)
  }
  .dtors         :
  {
    *(.dtors)
  }

  .got           : { *(.got.plt) *(.got) }
  .dynamic       : { *(.dynamic) }
70 71
  .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
L
Linus Torvalds 已提交
72 73 74 75 76 77
  /* 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 = .);
78
  . = ALIGN(PAGE_SIZE);
79 80 81 82
  __bss_start = .;
  PROVIDE(_bss_start = .);
  SBSS(0)
  BSS(0)
83
  _end = .;
L
Linus Torvalds 已提交
84
  PROVIDE (end = .);
85 86 87 88

  STABS_DEBUG

  DWARF_DEBUG
89

90
  DISCARDS
L
Linus Torvalds 已提交
91
}