2005-04-16 15:20:36 -07:00
|
|
|
/* ld script to make s390 Linux kernel
|
|
|
|
|
* Written by Martin Schwidefsky (schwidefsky@de.ibm.com)
|
|
|
|
|
*/
|
|
|
|
|
|
2008-11-27 11:05:58 +01:00
|
|
|
#include <asm/thread_info.h>
|
2007-10-12 16:11:50 +02:00
|
|
|
#include <asm/page.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <asm-generic/vmlinux.lds.h>
|
|
|
|
|
|
2006-01-06 00:19:28 -08:00
|
|
|
#ifndef CONFIG_64BIT
|
2005-04-16 15:20:36 -07:00
|
|
|
OUTPUT_FORMAT("elf32-s390", "elf32-s390", "elf32-s390")
|
|
|
|
|
OUTPUT_ARCH(s390)
|
|
|
|
|
ENTRY(_start)
|
|
|
|
|
jiffies = jiffies_64 + 4;
|
|
|
|
|
#else
|
|
|
|
|
OUTPUT_FORMAT("elf64-s390", "elf64-s390", "elf64-s390")
|
|
|
|
|
OUTPUT_ARCH(s390:64-bit)
|
|
|
|
|
ENTRY(_start)
|
|
|
|
|
jiffies = jiffies_64;
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-01-26 14:11:21 +01:00
|
|
|
PHDRS {
|
|
|
|
|
text PT_LOAD FLAGS(5); /* R_E */
|
|
|
|
|
data PT_LOAD FLAGS(7); /* RWE */
|
|
|
|
|
note PT_NOTE FLAGS(0); /* ___ */
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
SECTIONS
|
|
|
|
|
{
|
2007-10-12 16:11:49 +02:00
|
|
|
. = 0x00000000;
|
|
|
|
|
.text : {
|
|
|
|
|
_text = .; /* Text and read-only data */
|
2009-04-25 22:11:06 -04:00
|
|
|
HEAD_TEXT
|
|
|
|
|
TEXT_TEXT
|
2007-10-12 16:11:49 +02:00
|
|
|
SCHED_TEXT
|
|
|
|
|
LOCK_TEXT
|
|
|
|
|
KPROBES_TEXT
|
2009-06-12 10:26:46 +02:00
|
|
|
IRQENTRY_TEXT
|
2007-10-12 16:11:49 +02:00
|
|
|
*(.fixup)
|
|
|
|
|
*(.gnu.warning)
|
2008-02-05 16:50:38 +01:00
|
|
|
} :text = 0x0700
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-12 16:11:49 +02:00
|
|
|
_etext = .; /* End of text section */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2008-01-26 14:11:21 +01:00
|
|
|
NOTES :text :note
|
|
|
|
|
|
2007-10-12 16:11:49 +02:00
|
|
|
RODATA
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
#ifdef CONFIG_SHARED_KERNEL
|
2007-10-12 16:11:50 +02:00
|
|
|
. = ALIGN(0x100000); /* VM shared segments are 1MB aligned */
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|
|
|
|
|
|
2007-10-12 16:11:50 +02:00
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-10-12 16:11:49 +02:00
|
|
|
_eshared = .; /* End of shareable data */
|
2009-10-06 10:33:57 +02:00
|
|
|
_sdata = .; /* Start of data section */
|
2007-02-05 21:18:41 +01:00
|
|
|
|
2009-09-11 10:28:44 +02:00
|
|
|
EXCEPTION_TABLE(16) :data
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-09-11 10:28:44 +02:00
|
|
|
RW_DATA_SECTION(0x100, PAGE_SIZE, THREAD_SIZE)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-12 16:11:49 +02:00
|
|
|
_edata = .; /* End of data section */
|
2007-04-27 16:01:42 +02:00
|
|
|
|
2007-10-12 16:11:49 +02:00
|
|
|
/* will be freed after init */
|
2007-10-12 16:11:50 +02:00
|
|
|
. = ALIGN(PAGE_SIZE); /* Init code and data */
|
2007-10-12 16:11:49 +02:00
|
|
|
__init_begin = .;
|
2009-09-11 10:28:44 +02:00
|
|
|
|
|
|
|
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
|
|
|
|
|
2007-10-12 16:11:49 +02:00
|
|
|
/*
|
|
|
|
|
* .exit.text is discarded at runtime, not link time,
|
|
|
|
|
* to deal with references from __bug_table
|
|
|
|
|
*/
|
|
|
|
|
.exit.text : {
|
2008-01-20 14:15:03 +01:00
|
|
|
EXIT_TEXT
|
2007-10-12 16:11:49 +02:00
|
|
|
}
|
|
|
|
|
|
2009-03-26 15:23:58 +01:00
|
|
|
/* early.c uses stsi, which requires page aligned data. */
|
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
2009-09-11 10:28:44 +02:00
|
|
|
INIT_DATA_SECTION(0x100)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-12 16:11:50 +02:00
|
|
|
PERCPU(PAGE_SIZE)
|
|
|
|
|
. = ALIGN(PAGE_SIZE);
|
2007-10-12 16:11:49 +02:00
|
|
|
__init_end = .; /* freed after init ends here */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-09-11 10:28:44 +02:00
|
|
|
BSS_SECTION(0, 2, 0)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-10-12 16:11:49 +02:00
|
|
|
_end = . ;
|
|
|
|
|
|
|
|
|
|
/* Debugging sections. */
|
|
|
|
|
STABS_DEBUG
|
|
|
|
|
DWARF_DEBUG
|
2009-07-09 11:27:40 +09:00
|
|
|
|
|
|
|
|
/* Sections to be discarded */
|
|
|
|
|
DISCARDS
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|