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/v850 | |
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/v850')
-rw-r--r-- | arch/v850/kernel/vmlinux.lds.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/v850/kernel/vmlinux.lds.S b/arch/v850/kernel/vmlinux.lds.S index 3a5fd07fe064..356308221251 100644 --- a/arch/v850/kernel/vmlinux.lds.S +++ b/arch/v850/kernel/vmlinux.lds.S | |||
@@ -190,12 +190,16 @@ | |||
190 | __root_fs_image_start = . ; \ | 190 | __root_fs_image_start = . ; \ |
191 | *(.root) \ | 191 | *(.root) \ |
192 | __root_fs_image_end = . ; | 192 | __root_fs_image_end = . ; |
193 | |||
194 | #ifdef CONFIG_BLK_DEV_INITRD | ||
193 | /* The initramfs archive. */ | 195 | /* The initramfs archive. */ |
194 | #define INITRAMFS_CONTENTS \ | 196 | #define INITRAMFS_CONTENTS \ |
195 | . = ALIGN (4) ; \ | 197 | . = ALIGN (4) ; \ |
196 | ___initramfs_start = . ; \ | 198 | ___initramfs_start = . ; \ |
197 | *(.init.ramfs) \ | 199 | *(.init.ramfs) \ |
198 | ___initramfs_end = . ; | 200 | ___initramfs_end = . ; |
201 | #endif | ||
202 | |||
199 | /* Where the initial bootmap (bitmap for the boot-time memory allocator) | 203 | /* Where the initial bootmap (bitmap for the boot-time memory allocator) |
200 | should be place. */ | 204 | should be place. */ |
201 | #define BOOTMAP_CONTENTS \ | 205 | #define BOOTMAP_CONTENTS \ |