diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-10-26 19:46:59 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-10-26 19:46:59 +0900 |
commit | a384fe55c23bdcd4b027e09bd8e993d1c90bfae9 (patch) | |
tree | 825c5a22c7cbe36b9d7dd95878cf141e89cf8d96 /arch/sh/boot | |
parent | ef01b9a06d28e37d28f6eb19e60dd78eb1f11639 (diff) | |
parent | 9e24c7e2ac269486ab7c69ce50e944698e818fac (diff) | |
download | linux-3.10-a384fe55c23bdcd4b027e09bd8e993d1c90bfae9.tar.gz linux-3.10-a384fe55c23bdcd4b027e09bd8e993d1c90bfae9.tar.bz2 linux-3.10-a384fe55c23bdcd4b027e09bd8e993d1c90bfae9.zip |
Merge branch 'sh/stable-updates'
Diffstat (limited to 'arch/sh/boot')
-rw-r--r-- | arch/sh/boot/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/sh/boot/Makefile b/arch/sh/boot/Makefile index a1316872be6..cb8cf5572e7 100644 --- a/arch/sh/boot/Makefile +++ b/arch/sh/boot/Makefile @@ -20,11 +20,12 @@ CONFIG_BOOT_LINK_OFFSET ?= 0x00800000 CONFIG_ZERO_PAGE_OFFSET ?= 0x00001000 CONFIG_ENTRY_OFFSET ?= 0x00001000 +suffix-y := bin suffix-$(CONFIG_KERNEL_GZIP) := gz suffix-$(CONFIG_KERNEL_BZIP2) := bz2 suffix-$(CONFIG_KERNEL_LZMA) := lzma -targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz uImage.bz2 uImage.lzma +targets := zImage vmlinux.srec romImage uImage uImage.srec uImage.gz uImage.bz2 uImage.lzma uImage.bin extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma subdir- := compressed romimage @@ -88,6 +89,9 @@ $(obj)/uImage.gz: $(obj)/vmlinux.bin.gz $(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma $(call if_changed,uimage,lzma) +$(obj)/uImage.bin: $(obj)/vmlinux.bin + $(call if_changed,uimage,none) + OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec $(obj)/vmlinux.srec: $(obj)/compressed/vmlinux $(call if_changed,objcopy) |