vmlinux.lds.S 2.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/* ld script to make UltraLinux kernel */

3
#include <asm/page.h>
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12
#include <asm-generic/vmlinux.lds.h>

OUTPUT_FORMAT("elf64-sparc", "elf64-sparc", "elf64-sparc")
OUTPUT_ARCH(sparc:v9a)
ENTRY(_start)

jiffies = jiffies_64;
SECTIONS
{
13
  swapper_low_pmd_dir = 0x0000000000402000;
L
Linus Torvalds 已提交
14 15 16
  . = 0x4000;
  .text 0x0000000000404000 :
  {
17
    _text = .;
18
    TEXT_TEXT
L
Linus Torvalds 已提交
19 20
    SCHED_TEXT
    LOCK_TEXT
21
    KPROBES_TEXT
L
Linus Torvalds 已提交
22 23 24 25 26
    *(.gnu.warning)
  } =0
  _etext = .;
  PROVIDE (etext = .);

27
  RO_DATA(PAGE_SIZE)
L
Linus Torvalds 已提交
28 29 30

  .data    :
  {
31
    DATA_DATA
L
Linus Torvalds 已提交
32 33 34 35 36
    CONSTRUCTORS
  }
  .data1   : { *(.data1) }
  . = ALIGN(64);
  .data.cacheline_aligned : { *(.data.cacheline_aligned) }
37 38
  . = ALIGN(64);
  .data.read_mostly : { *(.data.read_mostly) }
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47
  _edata  =  .;
  PROVIDE (edata = .);
  .fixup   : { *(.fixup) }

  . = ALIGN(16);
  __start___ex_table = .;
  __ex_table : { *(__ex_table) }
  __stop___ex_table = .;

48 49
  NOTES

50
  . = ALIGN(PAGE_SIZE);
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63
  __init_begin = .;
  .init.text : { 
	_sinittext = .;
	*(.init.text)
	_einittext = .;
  }
  .init.data : { *(.init.data) }
  . = ALIGN(16);
  __setup_start = .;
  .init.setup : { *(.init.setup) }
  __setup_end = .;
  __initcall_start = .;
  .initcall.init : {
64
	INITCALLS
L
Linus Torvalds 已提交
65 66 67 68 69 70
  }
  __initcall_end = .;
  __con_initcall_start = .;
  .con_initcall.init : { *(.con_initcall.init) }
  __con_initcall_end = .;
  SECURITY_INIT
71
  . = ALIGN(4);
72 73 74
  __tsb_ldquad_phys_patch = .;
  .tsb_ldquad_phys_patch : { *(.tsb_ldquad_phys_patch) }
  __tsb_ldquad_phys_patch_end = .;
75 76 77
  __tsb_phys_patch = .;
  .tsb_phys_patch : { *(.tsb_phys_patch) }
  __tsb_phys_patch_end = .;
78 79 80
  __cpuid_patch = .;
  .cpuid_patch : { *(.cpuid_patch) }
  __cpuid_patch_end = .;
81 82 83 84 85 86
  __sun4v_1insn_patch = .;
  .sun4v_1insn_patch : { *(.sun4v_1insn_patch) }
  __sun4v_1insn_patch_end = .;
  __sun4v_2insn_patch = .;
  .sun4v_2insn_patch : { *(.sun4v_2insn_patch) }
  __sun4v_2insn_patch_end = .;
87 88

#ifdef CONFIG_BLK_DEV_INITRD
89
  . = ALIGN(PAGE_SIZE);
L
Linus Torvalds 已提交
90 91 92
  __initramfs_start = .;
  .init.ramfs : { *(.init.ramfs) }
  __initramfs_end = .;
93 94
#endif

95 96
  PERCPU(PAGE_SIZE)

97
  . = ALIGN(PAGE_SIZE);
L
Linus Torvalds 已提交
98 99 100 101 102 103 104 105 106 107 108 109
  __init_end = .;
  __bss_start = .;
  .sbss      : { *(.sbss) *(.scommon) }
  .bss       :
  {
   *(.dynbss)
   *(.bss)
   *(COMMON)
  }
  _end = . ;
  PROVIDE (end = .);
  /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
110 111 112 113

  STABS_DEBUG

  DWARF_DEBUG
L
Linus Torvalds 已提交
114
}