2005-04-16 22:20:36 +00:00
|
|
|
/* ld script to make m68k Linux kernel */
|
|
|
|
|
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
2008-07-17 19:16:11 +00:00
|
|
|
#include <asm/page.h>
|
2009-09-27 17:57:55 +00:00
|
|
|
#include <asm/thread_info.h>
|
2005-04-16 22:20:36 +00: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 02:11:03 +00:00
|
|
|
HEAD_TEXT
|
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
|
|
|
|
|
2007-08-22 21:01:33 +00:00
|
|
|
_etext = .; /* End of text section */
|
|
|
|
|
2009-09-27 17:57:55 +00:00
|
|
|
EXCEPTION_TABLE(16)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2011-05-20 01:34:58 +00:00
|
|
|
_sdata = .; /* Start of data section */
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
RODATA
|
|
|
|
|
2009-09-27 17:57:55 +00:00
|
|
|
RW_DATA_SECTION(16, PAGE_SIZE, THREAD_SIZE)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-09-27 17:57:55 +00:00
|
|
|
BSS_SECTION(0, 0, 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
_edata = .; /* End of data section */
|
|
|
|
|
|
|
|
/* will be freed after init */
|
2008-07-17 19:16:11 +00:00
|
|
|
. = ALIGN(PAGE_SIZE); /* Init code and data */
|
2005-04-16 22:20:36 +00:00
|
|
|
__init_begin = .;
|
2009-09-27 17:57:55 +00:00
|
|
|
INIT_TEXT_SECTION(PAGE_SIZE) :data
|
|
|
|
INIT_DATA_SECTION(16)
|
2007-05-31 07:40:50 +00:00
|
|
|
.m68k_fixup : {
|
|
|
|
__start_fixup = .;
|
|
|
|
*(.m68k_fixup)
|
|
|
|
__stop_fixup = .;
|
|
|
|
}
|
2008-10-13 19:58:50 +00:00
|
|
|
NOTES
|
2009-09-27 17:57:55 +00: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-16 22:20:36 +00:00
|
|
|
|
|
|
|
_end = . ;
|
|
|
|
|
2009-09-27 17:57:55 +00:00
|
|
|
STABS_DEBUG
|
2005-04-16 22:20:36 +00: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 02:27:40 +00:00
|
|
|
|
|
|
|
/* Sections to be discarded */
|
|
|
|
DISCARDS
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|