2005-04-16 18:20:36 -04:00
|
|
|
/* ld script to make UltraLinux kernel */
|
|
|
|
|
2007-05-29 15:29:00 -04:00
|
|
|
#include <asm/page.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
|
|
|
|
OUTPUT_FORMAT("elf64-sparc", "elf64-sparc", "elf64-sparc")
|
|
|
|
OUTPUT_ARCH(sparc:v9a)
|
|
|
|
ENTRY(_start)
|
|
|
|
|
|
|
|
jiffies = jiffies_64;
|
|
|
|
SECTIONS
|
|
|
|
{
|
2005-09-25 19:46:57 -04:00
|
|
|
swapper_low_pmd_dir = 0x0000000000402000;
|
2005-04-16 18:20:36 -04:00
|
|
|
. = 0x4000;
|
|
|
|
.text 0x0000000000404000 :
|
|
|
|
{
|
2006-12-06 20:14:04 -05:00
|
|
|
_text = .;
|
2007-05-12 18:31:33 -04:00
|
|
|
TEXT_TEXT
|
2005-04-16 18:20:36 -04:00
|
|
|
SCHED_TEXT
|
|
|
|
LOCK_TEXT
|
2005-09-06 18:19:30 -04:00
|
|
|
KPROBES_TEXT
|
2005-04-16 18:20:36 -04:00
|
|
|
*(.gnu.warning)
|
|
|
|
} =0
|
|
|
|
_etext = .;
|
|
|
|
PROVIDE (etext = .);
|
|
|
|
|
2007-05-29 15:29:00 -04:00
|
|
|
RO_DATA(PAGE_SIZE)
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
.data :
|
|
|
|
{
|
2007-05-17 07:38:44 -04:00
|
|
|
DATA_DATA
|
2005-04-16 18:20:36 -04:00
|
|
|
CONSTRUCTORS
|
|
|
|
}
|
|
|
|
.data1 : { *(.data1) }
|
|
|
|
. = ALIGN(64);
|
|
|
|
.data.cacheline_aligned : { *(.data.cacheline_aligned) }
|
2005-07-10 18:45:11 -04:00
|
|
|
. = ALIGN(64);
|
|
|
|
.data.read_mostly : { *(.data.read_mostly) }
|
2005-04-16 18:20:36 -04:00
|
|
|
_edata = .;
|
|
|
|
PROVIDE (edata = .);
|
|
|
|
.fixup : { *(.fixup) }
|
|
|
|
|
|
|
|
. = ALIGN(16);
|
|
|
|
__start___ex_table = .;
|
|
|
|
__ex_table : { *(__ex_table) }
|
|
|
|
__stop___ex_table = .;
|
|
|
|
|
2007-05-29 15:29:00 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-04-16 18:20:36 -04:00
|
|
|
__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 : {
|
2006-10-27 14:41:44 -04:00
|
|
|
INITCALLS
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
__initcall_end = .;
|
|
|
|
__con_initcall_start = .;
|
|
|
|
.con_initcall.init : { *(.con_initcall.init) }
|
|
|
|
__con_initcall_end = .;
|
|
|
|
SECURITY_INIT
|
2006-02-01 18:55:21 -05:00
|
|
|
. = ALIGN(4);
|
2006-02-07 02:44:37 -05:00
|
|
|
__tsb_ldquad_phys_patch = .;
|
|
|
|
.tsb_ldquad_phys_patch : { *(.tsb_ldquad_phys_patch) }
|
|
|
|
__tsb_ldquad_phys_patch_end = .;
|
2006-02-01 18:55:21 -05:00
|
|
|
__tsb_phys_patch = .;
|
|
|
|
.tsb_phys_patch : { *(.tsb_phys_patch) }
|
|
|
|
__tsb_phys_patch_end = .;
|
2006-02-27 02:27:19 -05:00
|
|
|
__cpuid_patch = .;
|
|
|
|
.cpuid_patch : { *(.cpuid_patch) }
|
|
|
|
__cpuid_patch_end = .;
|
2006-02-07 03:00:16 -05:00
|
|
|
__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 = .;
|
2007-02-10 04:44:44 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
2007-05-29 15:29:00 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-04-16 18:20:36 -04:00
|
|
|
__initramfs_start = .;
|
|
|
|
.init.ramfs : { *(.init.ramfs) }
|
|
|
|
__initramfs_end = .;
|
2007-02-10 04:44:44 -05:00
|
|
|
#endif
|
|
|
|
|
2007-07-19 04:48:12 -04:00
|
|
|
PERCPU(PAGE_SIZE)
|
|
|
|
|
2007-05-29 15:29:00 -04:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2005-04-16 18:20:36 -04:00
|
|
|
__init_end = .;
|
|
|
|
__bss_start = .;
|
|
|
|
.sbss : { *(.sbss) *(.scommon) }
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
*(.dynbss)
|
|
|
|
*(.bss)
|
|
|
|
*(COMMON)
|
|
|
|
}
|
|
|
|
_end = . ;
|
|
|
|
PROVIDE (end = .);
|
|
|
|
/DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
|
2005-12-28 16:22:54 -05:00
|
|
|
|
|
|
|
STABS_DEBUG
|
|
|
|
|
|
|
|
DWARF_DEBUG
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|