diff options
author | Jean-Paul Saman <jean-paul.saman@nxp.com> | 2007-02-10 04:44:44 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 13:51:25 -0500 |
commit | 67d38229dfa64cf9a75f83746dde345f47bbd8dc (patch) | |
tree | 36ecb1005e79616e4d1274e1c0ebf793125aeb38 /arch/sh64/kernel | |
parent | c33df4eaaf41fd3e34837a6ae9a5f9970c393d9f (diff) |
[PATCH] disable init/initramfs.c: architectures
Update all arch/*/kernel/vmlinux.lds.S to not include space for initramfs
when CONFIG_BLK_DEV_INITRAMFS is not selected. This saves another 4 kbytes
on most platfoms (some reserve PAGE_SIZE for initramfs).
Signed-off-by: Jean-Paul Saman <jean-paul.saman@nxp.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/sh64/kernel')
-rw-r--r-- | arch/sh64/kernel/vmlinux.lds.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh64/kernel/vmlinux.lds.S b/arch/sh64/kernel/vmlinux.lds.S index 95c4d753e357..a59c5e998131 100644 --- a/arch/sh64/kernel/vmlinux.lds.S +++ b/arch/sh64/kernel/vmlinux.lds.S | |||
@@ -115,9 +115,13 @@ SECTIONS | |||
115 | .con_initcall.init : C_PHYS(.con_initcall.init) { *(.con_initcall.init) } | 115 | .con_initcall.init : C_PHYS(.con_initcall.init) { *(.con_initcall.init) } |
116 | __con_initcall_end = .; | 116 | __con_initcall_end = .; |
117 | SECURITY_INIT | 117 | SECURITY_INIT |
118 | |||
119 | #ifdef CONFIG_BLK_DEV_INITRD | ||
118 | __initramfs_start = .; | 120 | __initramfs_start = .; |
119 | .init.ramfs : C_PHYS(.init.ramfs) { *(.init.ramfs) } | 121 | .init.ramfs : C_PHYS(.init.ramfs) { *(.init.ramfs) } |
120 | __initramfs_end = .; | 122 | __initramfs_end = .; |
123 | #endif | ||
124 | |||
121 | . = ALIGN(PAGE_SIZE); | 125 | . = ALIGN(PAGE_SIZE); |
122 | __init_end = .; | 126 | __init_end = .; |
123 | 127 | ||