2 * vmlinux.lds.S -- master linker script for m68knommu arch
4 * (C) Copyright 2002-2006, Greg Ungerer <gerg@snapgear.com>
6 * This linker script is equiped to build either ROM loaded or RAM
10 #include <asm-generic/vmlinux.lds.h>
12 #if defined(CONFIG_RAMKERNEL)
13 #define RAM_START CONFIG_KERNELBASE
14 #define RAM_LENGTH (CONFIG_RAMBASE + CONFIG_RAMSIZE - CONFIG_KERNELBASE)
20 #if defined(CONFIG_ROMKERNEL) || defined(CONFIG_HIMEMKERNEL)
21 #define RAM_START CONFIG_RAMBASE
22 #define RAM_LENGTH CONFIG_RAMSIZE
23 #define ROMVEC_START CONFIG_ROMVEC
24 #define ROMVEC_LENGTH CONFIG_ROMVECSIZE
25 #define ROM_START CONFIG_ROMSTART
26 #define ROM_LENGTH CONFIG_ROMSIZE
42 ram : ORIGIN = RAM_START, LENGTH = RAM_LENGTH
44 romvec : ORIGIN = ROMVEC_START, LENGTH = ROMVEC_LENGTH
45 rom : ORIGIN = ROM_START, LENGTH = ROM_LENGTH
49 jiffies = jiffies_64 + 4;
69 . = ALIGN(16); /* Exception table */
70 __start___ex_table = .;
72 __stop___ex_table = .;
74 *(.rodata) *(.rodata.*)
75 *(__vermagic) /* Kernel version magic */
79 /* Kernel symbol table: Normal symbols */
81 __start___ksymtab = .;
85 /* Kernel symbol table: GPL-only symbols */
86 __start___ksymtab_gpl = .;
88 __stop___ksymtab_gpl = .;
90 /* Kernel symbol table: Normal unused symbols */
91 __start___ksymtab_unused = .;
93 __stop___ksymtab_unused = .;
95 /* Kernel symbol table: GPL-only unused symbols */
96 __start___ksymtab_unused_gpl = .;
97 *(__ksymtab_unused_gpl)
98 __stop___ksymtab_unused_gpl = .;
100 /* Kernel symbol table: GPL-future symbols */
101 __start___ksymtab_gpl_future = .;
102 *(__ksymtab_gpl_future)
103 __stop___ksymtab_gpl_future = .;
105 /* Kernel symbol table: Normal symbols */
106 __start___kcrctab = .;
108 __stop___kcrctab = .;
110 /* Kernel symbol table: GPL-only symbols */
111 __start___kcrctab_gpl = .;
113 __stop___kcrctab_gpl = .;
115 /* Kernel symbol table: GPL-future symbols */
116 __start___kcrctab_gpl_future = .;
117 *(__kcrctab_gpl_future)
118 __stop___kcrctab_gpl_future = .;
120 /* Kernel symbol table: strings */
123 /* Built-in module parameters */
153 __initcall_start = .;
156 __con_initcall_start = .;
157 *(.con_initcall.init)
158 __con_initcall_end = .;
159 __security_initcall_start = .;
160 *(.security_initcall.init)
161 __security_initcall_end = .;
162 #ifdef CONFIG_BLK_DEV_INITRD
164 __initramfs_start = .;