diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-02-13 01:43:25 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-02-13 01:43:25 -0500 |
commit | d9bc125caf592b7d081021f32ce5b717efdf70c8 (patch) | |
tree | 263b7066ba22ddce21db610c0300f6eaac6f2064 /arch/m68knommu/kernel/vmlinux.lds.S | |
parent | 43d78ef2ba5bec26d0315859e8324bfc0be23766 (diff) | |
parent | ec2f9d1331f658433411c58077871e1eef4ee1b4 (diff) |
Merge branch 'master' of /home/trondmy/kernel/linux-2.6/
Conflicts:
net/sunrpc/auth_gss/gss_krb5_crypto.c
net/sunrpc/auth_gss/gss_spkm3_token.c
net/sunrpc/clnt.c
Merge with mainline and fix conflicts.
Diffstat (limited to 'arch/m68knommu/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/m68knommu/kernel/vmlinux.lds.S | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/m68knommu/kernel/vmlinux.lds.S b/arch/m68knommu/kernel/vmlinux.lds.S index 2b2a10da64a4..c86a1bf589d4 100644 --- a/arch/m68knommu/kernel/vmlinux.lds.S +++ b/arch/m68knommu/kernel/vmlinux.lds.S | |||
@@ -87,6 +87,16 @@ SECTIONS { | |||
87 | *(__ksymtab_gpl) | 87 | *(__ksymtab_gpl) |
88 | __stop___ksymtab_gpl = .; | 88 | __stop___ksymtab_gpl = .; |
89 | 89 | ||
90 | /* Kernel symbol table: Normal unused symbols */ | ||
91 | __start___ksymtab_unused = .; | ||
92 | *(__ksymtab_unused) | ||
93 | __stop___ksymtab_unused = .; | ||
94 | |||
95 | /* Kernel symbol table: GPL-only unused symbols */ | ||
96 | __start___ksymtab_unused_gpl = .; | ||
97 | *(__ksymtab_unused_gpl) | ||
98 | __stop___ksymtab_unused_gpl = .; | ||
99 | |||
90 | /* Kernel symbol table: GPL-future symbols */ | 100 | /* Kernel symbol table: GPL-future symbols */ |
91 | __start___ksymtab_gpl_future = .; | 101 | __start___ksymtab_gpl_future = .; |
92 | *(__ksymtab_gpl_future) | 102 | *(__ksymtab_gpl_future) |
@@ -149,10 +159,12 @@ SECTIONS { | |||
149 | __security_initcall_start = .; | 159 | __security_initcall_start = .; |
150 | *(.security_initcall.init) | 160 | *(.security_initcall.init) |
151 | __security_initcall_end = .; | 161 | __security_initcall_end = .; |
162 | #ifdef CONFIG_BLK_DEV_INITRD | ||
152 | . = ALIGN(4); | 163 | . = ALIGN(4); |
153 | __initramfs_start = .; | 164 | __initramfs_start = .; |
154 | *(.init.ramfs) | 165 | *(.init.ramfs) |
155 | __initramfs_end = .; | 166 | __initramfs_end = .; |
167 | #endif | ||
156 | . = ALIGN(4096); | 168 | . = ALIGN(4096); |
157 | __init_end = .; | 169 | __init_end = .; |
158 | } > INIT | 170 | } > INIT |