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;
70 . = ALIGN(16); /* Exception table */
71 __start___ex_table = .;
73 __stop___ex_table = .;
75 *(.rodata) *(.rodata.*)
76 *(__vermagic) /* Kernel version magic */
81 /* Kernel symbol table: Normal symbols */
83 __start___ksymtab = .;
87 /* Kernel symbol table: GPL-only symbols */
88 __start___ksymtab_gpl = .;
90 __stop___ksymtab_gpl = .;
92 /* Kernel symbol table: Normal unused symbols */
93 __start___ksymtab_unused = .;
95 __stop___ksymtab_unused = .;
97 /* Kernel symbol table: GPL-only unused symbols */
98 __start___ksymtab_unused_gpl = .;
99 *(__ksymtab_unused_gpl)
100 __stop___ksymtab_unused_gpl = .;
102 /* Kernel symbol table: GPL-future symbols */
103 __start___ksymtab_gpl_future = .;
104 *(__ksymtab_gpl_future)
105 __stop___ksymtab_gpl_future = .;
107 /* Kernel symbol table: Normal symbols */
108 __start___kcrctab = .;
110 __stop___kcrctab = .;
112 /* Kernel symbol table: GPL-only symbols */
113 __start___kcrctab_gpl = .;
115 __stop___kcrctab_gpl = .;
117 /* Kernel symbol table: GPL-future symbols */
118 __start___kcrctab_gpl_future = .;
119 *(__kcrctab_gpl_future)
120 __stop___kcrctab_gpl_future = .;
122 /* Kernel symbol table: strings */
125 /* Built-in module parameters */
155 __initcall_start = .;
158 __con_initcall_start = .;
159 *(.con_initcall.init)
160 __con_initcall_end = .;
161 __security_initcall_start = .;
162 *(.security_initcall.init)
163 __security_initcall_end = .;
164 #ifdef CONFIG_BLK_DEV_INITRD
166 __initramfs_start = .;