uml.lds.S 2.4 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#include <asm/vmlinux.lds.h>
3
#include <asm/page.h>
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11

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

SECTIONS
{
12
  /* This must contain the right address - not quite the default ELF one.*/
L
Linus Torvalds 已提交
13
  PROVIDE (__executable_start = START);
14 15 16 17 18 19
  /* 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 已提交
20

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

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

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

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

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
  /*
   * 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 = .);
  }

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

66
  __init_begin = .;
67
  init.data : { INIT_DATA }
68 69
  __init_end = .;

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

  .got           : { *(.got.plt) *(.got) }
  .dynamic       : { *(.dynamic) }
91 92
  .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
L
Linus Torvalds 已提交
93 94 95 96 97 98
  /* 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 = .);
99
  . = ALIGN(PAGE_SIZE);
100 101 102 103
  __bss_start = .;
  PROVIDE(_bss_start = .);
  SBSS(0)
  BSS(0)
104
   __bss_stop = .;
105
  _end = .;
L
Linus Torvalds 已提交
106
  PROVIDE (end = .);
107 108 109 110

  STABS_DEBUG

  DWARF_DEBUG
111

112
  DISCARDS
L
Linus Torvalds 已提交
113
}