aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-01-13 02:28:47 -0500
committerPaul Mundt <lethal@linux-sh.org>2010-01-13 02:28:47 -0500
commiteca50f14b88315bd31183a17c89e53534f2ed2fa (patch)
tree6ccf51b0cee8d2db352763bddb8986cbdfda9efa
parentc7b16efb7d0c7fce218b2cdafa2432c5fbf57314 (diff)
sh: Add a vmlinux.bin target.
This makes vmlinux.bin generation an explicit make target, as opposed to just a dependency for some of the other targets. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r--arch/sh/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/sh/Makefile b/arch/sh/Makefile
index fd57676115e6..f7d5f42b00a7 100644
--- a/arch/sh/Makefile
+++ b/arch/sh/Makefile
@@ -204,7 +204,8 @@ libs-$(CONFIG_SUPERH32) := arch/sh/lib/ $(libs-y)
204libs-$(CONFIG_SUPERH64) := arch/sh/lib64/ $(libs-y) 204libs-$(CONFIG_SUPERH64) := arch/sh/lib64/ $(libs-y)
205 205
206BOOT_TARGETS = uImage uImage.bz2 uImage.gz uImage.lzma uImage.lzo \ 206BOOT_TARGETS = uImage uImage.bz2 uImage.gz uImage.lzma uImage.lzo \
207 uImage.srec uImage.bin zImage vmlinux.srec romImage 207 uImage.srec uImage.bin zImage vmlinux.bin vmlinux.srec \
208 romImage
208PHONY += $(BOOT_TARGETS) 209PHONY += $(BOOT_TARGETS)
209 210
210all: $(KBUILD_IMAGE) 211all: $(KBUILD_IMAGE)
@@ -225,6 +226,7 @@ define archhelp
225 @echo ' zImage - Compressed kernel image' 226 @echo ' zImage - Compressed kernel image'
226 @echo ' romImage - Compressed ROM image, if supported' 227 @echo ' romImage - Compressed ROM image, if supported'
227 @echo ' vmlinux.srec - Create an ELF S-record' 228 @echo ' vmlinux.srec - Create an ELF S-record'
229 @echo ' vmlinux.bin - Create an uncompressed binary image'
228 @echo '* uImage - Alias to bootable U-Boot image' 230 @echo '* uImage - Alias to bootable U-Boot image'
229 @echo ' uImage.srec - Create an S-record for U-Boot' 231 @echo ' uImage.srec - Create an S-record for U-Boot'
230 @echo ' uImage.bin - Kernel-only image for U-Boot (bin)' 232 @echo ' uImage.bin - Kernel-only image for U-Boot (bin)'