diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-25 21:28:40 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-02-25 21:28:40 +0000 |
commit | 892a00912177d4f99352f3be506e9310f949beec (patch) | |
tree | 9a3b0299168f9b62802c49157ffe4ddd8e82c1b2 /target | |
parent | c27eec2666642c75626a29c9017b9f0274f2e513 (diff) | |
download | upstream-892a00912177d4f99352f3be506e9310f949beec.tar.gz upstream-892a00912177d4f99352f3be506e9310f949beec.tar.bz2 upstream-892a00912177d4f99352f3be506e9310f949beec.zip |
ramips: image: don't break make process if mkimage command fails
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35800 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ramips/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index d88bc95edb..67a6f6085e 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -50,7 +50,7 @@ endef define MkImage $(eval imagename=$(if $(4),$(4),MIPS OpenWrt Linux-$(LINUX_VERSION))) - mkimage -A mips -O linux -T kernel -C $(1) $(call kernel_entry)\ + -mkimage -A mips -O linux -T kernel -C $(1) $(call kernel_entry)\ -n "$(imagename)" \ -d $(2) $(3) endef |