2005-04-17 02:20:36 +04:00
/* ld script to make m68k Linux kernel */
#include <asm-generic/vmlinux.lds.h>
2008-07-17 23:16:11 +04:00
#include <asm/page.h>
2009-09-27 21:57:55 +04:00
#include <asm/thread_info.h>
2005-04-17 02:20:36 +04:00
OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
OUTPUT_ARCH(m68k)
ENTRY(_start)
jiffies = jiffies_64 + 4;
SECTIONS
{
. = 0x1000;
_text = .; /* Text and read-only data */
.text : {
2009-04-26 06:11:03 +04:00
HEAD_TEXT
2007-05-13 02:31:33 +04:00
TEXT_TEXT
2005-04-17 02:20:36 +04:00
SCHED_TEXT
2006-01-12 12:06:11 +03:00
LOCK_TEXT
2005-04-17 02:20:36 +04:00
*(.fixup)
*(.gnu.warning)
} :text = 0x4e75
2007-08-23 01:01:33 +04:00
_etext = .; /* End of text section */
2009-09-27 21:57:55 +04:00
EXCEPTION_TABLE(16)
2005-04-17 02:20:36 +04:00
2011-05-20 05:34:58 +04:00
_sdata = .; /* Start of data section */
2005-04-17 02:20:36 +04:00
RODATA
2009-09-27 21:57:55 +04:00
RW_DATA_SECTION(16, PAGE_SIZE, THREAD_SIZE)
2005-04-17 02:20:36 +04:00
2009-09-27 21:57:55 +04:00
BSS_SECTION(0, 0, 0)
2005-04-17 02:20:36 +04:00
_edata = .; /* End of data section */
/* will be freed after init */
2008-07-17 23:16:11 +04:00
. = ALIGN(PAGE_SIZE); /* Init code and data */
2005-04-17 02:20:36 +04:00
__init_begin = .;
2009-09-27 21:57:55 +04:00
INIT_TEXT_SECTION(PAGE_SIZE) :data
INIT_DATA_SECTION(16)
2007-05-31 11:40:50 +04:00
.m68k_fixup : {
__start_fixup = .;
*(.m68k_fixup)
__stop_fixup = .;
}
2008-10-13 23:58:50 +04:00
NOTES
2009-09-27 21:57:55 +04:00
.init_end : {
/* This ALIGN be in a section so that _end is at the end of the
load segment. */
. = ALIGN(PAGE_SIZE);
__init_end = .;
}
2005-04-17 02:20:36 +04:00
_end = . ;
2009-09-27 21:57:55 +04:00
STABS_DEBUG
2005-04-17 02:20:36 +04:00
.comment 0 : { *(.comment) }
linker script: unify usage of discard definition
Discarded sections in different archs share some commonality but have
considerable differences. This led to linker script for each arch
implementing its own /DISCARD/ definition, which makes maintaining
tedious and adding new entries error-prone.
This patch makes all linker scripts to move discard definitions to the
end of the linker script and use the common DISCARDS macro. As ld
uses the first matching section definition, archs can include default
discarded sections by including them earlier in the linker script.
ia64 is notable because it first throws away some ia64 specific
subsections and then include the rest of the sections into the final
image, so those sections must be discarded before the inclusion.
defconfig compile tested for x86, x86-64, powerpc, powerpc64, ia64,
alpha, sparc, sparc64 and s390. Michal Simek tested microblaze.
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Tested-by: Michal Simek <monstr@monstr.eu>
Cc: linux-arch@vger.kernel.org
Cc: Michal Simek <monstr@monstr.eu>
Cc: microblaze-uclinux@itee.uq.edu.au
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Tony Luck <tony.luck@intel.com>
2009-07-09 06:27:40 +04:00
/* Sections to be discarded */
DISCARDS
2005-04-17 02:20:36 +04:00
}