2005-04-16 22:20:36 +00:00
|
|
|
/* ld script to make m68k Linux kernel */
|
|
|
|
|
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
|
|
|
|
OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
|
|
|
|
OUTPUT_ARCH(m68k)
|
|
|
|
ENTRY(_start)
|
|
|
|
jiffies = jiffies_64 + 4;
|
|
|
|
SECTIONS
|
|
|
|
{
|
2006-12-09 09:34:38 +00:00
|
|
|
. = 0xE002000;
|
2005-04-16 22:20:36 +00:00
|
|
|
_text = .; /* Text and read-only data */
|
|
|
|
.text : {
|
2007-07-20 03:33:08 +00:00
|
|
|
*(.text.head)
|
2007-05-12 22:31:33 +00:00
|
|
|
TEXT_TEXT
|
2005-04-16 22:20:36 +00:00
|
|
|
SCHED_TEXT
|
2006-01-12 09:06:11 +00:00
|
|
|
LOCK_TEXT
|
2005-04-16 22:20:36 +00:00
|
|
|
*(.fixup)
|
|
|
|
*(.gnu.warning)
|
|
|
|
} :text = 0x4e75
|
|
|
|
RODATA
|
|
|
|
|
|
|
|
_etext = .; /* End of text section */
|
|
|
|
|
|
|
|
.data : { /* Data */
|
2007-05-17 11:38:44 +00:00
|
|
|
DATA_DATA
|
2005-04-16 22:20:36 +00:00
|
|
|
CONSTRUCTORS
|
|
|
|
. = ALIGN(16); /* Exception table */
|
|
|
|
__start___ex_table = .;
|
|
|
|
*(__ex_table)
|
|
|
|
__stop___ex_table = .;
|
|
|
|
} :data
|
|
|
|
/* End of data goes *here* so that freeing init code works properly. */
|
|
|
|
_edata = .;
|
|
|
|
|
|
|
|
/* will be freed after init */
|
|
|
|
. = ALIGN(8192); /* Init code and data */
|
|
|
|
__init_begin = .;
|
|
|
|
.init.text : {
|
|
|
|
_sinittext = .;
|
2008-01-20 13:15:03 +00:00
|
|
|
INIT_TEXT
|
2005-04-16 22:20:36 +00:00
|
|
|
_einittext = .;
|
|
|
|
}
|
2008-01-20 13:15:03 +00:00
|
|
|
.init.data : { INIT_DATA }
|
2005-04-16 22:20:36 +00:00
|
|
|
. = ALIGN(16);
|
|
|
|
__setup_start = .;
|
|
|
|
.init.setup : { *(.init.setup) }
|
|
|
|
__setup_end = .;
|
|
|
|
__initcall_start = .;
|
|
|
|
.initcall.init : {
|
2006-10-29 10:21:51 +00:00
|
|
|
INITCALLS
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
__initcall_end = .;
|
|
|
|
__con_initcall_start = .;
|
|
|
|
.con_initcall.init : { *(.con_initcall.init) }
|
|
|
|
__con_initcall_end = .;
|
2007-05-31 07:40:50 +00:00
|
|
|
.m68k_fixup : {
|
|
|
|
__start_fixup = .;
|
|
|
|
*(.m68k_fixup)
|
|
|
|
__stop_fixup = .;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
SECURITY_INIT
|
2007-02-10 09:44:44 +00:00
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
2005-04-16 22:20:36 +00:00
|
|
|
. = ALIGN(8192);
|
|
|
|
__initramfs_start = .;
|
|
|
|
.init.ramfs : { *(.init.ramfs) }
|
|
|
|
__initramfs_end = .;
|
2007-02-10 09:44:44 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
. = ALIGN(8192);
|
|
|
|
__init_end = .;
|
2006-01-12 09:06:38 +00:00
|
|
|
.data.init.task : { *(.data.init_task) }
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
.bss : { *(.bss) } /* BSS */
|
|
|
|
|
|
|
|
_end = . ;
|
|
|
|
|
|
|
|
/* Sections to be discarded */
|
|
|
|
/DISCARD/ : {
|
2008-01-20 13:15:03 +00:00
|
|
|
EXIT_TEXT
|
|
|
|
EXIT_DATA
|
2005-04-16 22:20:36 +00:00
|
|
|
*(.exitcall.exit)
|
|
|
|
}
|
|
|
|
|
|
|
|
.crap : {
|
|
|
|
/* Stabs debugging sections. */
|
|
|
|
*(.stab)
|
|
|
|
*(.stabstr)
|
|
|
|
*(.stab.excl)
|
|
|
|
*(.stab.exclstr)
|
|
|
|
*(.stab.index)
|
|
|
|
*(.stab.indexstr)
|
|
|
|
*(.comment)
|
|
|
|
*(.note)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|