]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/m68k/kernel/vmlinux-std.lds
Merge branch 'for-4.15-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
[mirror_ubuntu-bionic-kernel.git] / arch / m68k / kernel / vmlinux-std.lds
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/* ld script to make m68k Linux kernel */
3
4#include <asm-generic/vmlinux.lds.h>
97d26e73 5#include <asm/page.h>
7c5fd561 6#include <asm/thread_info.h>
1da177e4
LT
7
8OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
9OUTPUT_ARCH(m68k)
10ENTRY(_start)
11jiffies = jiffies_64 + 4;
12SECTIONS
13{
14 . = 0x1000;
15 _text = .; /* Text and read-only data */
16 .text : {
6f335cab 17 HEAD_TEXT
7664709b 18 TEXT_TEXT
969de098
GU
19 IRQENTRY_TEXT
20 SOFTIRQENTRY_TEXT
1da177e4 21 SCHED_TEXT
6727ad9e 22 CPUIDLE_TEXT
198a4101 23 LOCK_TEXT
1da177e4
LT
24 *(.fixup)
25 *(.gnu.warning)
26 } :text = 0x4e75
27
fe6d9daf
RZ
28 _etext = .; /* End of text section */
29
7c5fd561 30 EXCEPTION_TABLE(16)
1da177e4 31
a2d063ac
SR
32 _sdata = .; /* Start of data section */
33
1da177e4
LT
34 RODATA
35
7c5fd561 36 RW_DATA_SECTION(16, PAGE_SIZE, THREAD_SIZE)
1da177e4 37
7c5fd561 38 BSS_SECTION(0, 0, 0)
1da177e4
LT
39
40 _edata = .; /* End of data section */
41
42 /* will be freed after init */
97d26e73 43 . = ALIGN(PAGE_SIZE); /* Init code and data */
1da177e4 44 __init_begin = .;
7c5fd561
TA
45 INIT_TEXT_SECTION(PAGE_SIZE) :data
46 INIT_DATA_SECTION(16)
fbe9c961
RZ
47 .m68k_fixup : {
48 __start_fixup = .;
49 *(.m68k_fixup)
50 __stop_fixup = .;
51 }
08a3db94 52 NOTES
7c5fd561
TA
53 .init_end : {
54 /* This ALIGN be in a section so that _end is at the end of the
55 load segment. */
56 . = ALIGN(PAGE_SIZE);
57 __init_end = .;
58 }
1da177e4
LT
59
60 _end = . ;
61
7c5fd561 62 STABS_DEBUG
1da177e4 63 .comment 0 : { *(.comment) }
023bf6f1
TH
64
65 /* Sections to be discarded */
66 DISCARDS
1da177e4 67}