diff options
author | Chuanhong Guo <gch981213@gmail.com> | 2016-10-06 14:27:49 +0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-10-26 14:07:20 +0200 |
commit | c5a7e2c2fb39ea32ce31e20d02a571b546531f1c (patch) | |
tree | 6e9909f8fb4f2697e3cc056ce3a1c438d379edbf /target/linux/ar71xx/image/ubnt.mk | |
parent | 9275964e1d5978756e8df699eb2b505ebfc859f6 (diff) | |
download | upstream-c5a7e2c2fb39ea32ce31e20d02a571b546531f1c.tar.gz upstream-c5a7e2c2fb39ea32ce31e20d02a571b546531f1c.tar.bz2 upstream-c5a7e2c2fb39ea32ce31e20d02a571b546531f1c.zip |
ar71xx: Ignore firmware building errors of UBNT and CyberTAN devices
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
Diffstat (limited to 'target/linux/ar71xx/image/ubnt.mk')
-rw-r--r-- | target/linux/ar71xx/image/ubnt.mk | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/target/linux/ar71xx/image/ubnt.mk b/target/linux/ar71xx/image/ubnt.mk index 5a4dc82c4f..be5c397e53 100644 --- a/target/linux/ar71xx/image/ubnt.mk +++ b/target/linux/ar71xx/image/ubnt.mk @@ -5,7 +5,7 @@ # mkubntimage is using the kernel image direct # routerboard creates partitions out of the ubnt header define Build/mkubntimage - $(STAGING_DIR_HOST)/bin/mkfwimage \ + -$(STAGING_DIR_HOST)/bin/mkfwimage \ -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-OpenWrt-$(REVISION) \ -k $(IMAGE_KERNEL) \ -r $@ \ @@ -15,18 +15,19 @@ endef # all UBNT XM device expect the kernel image to have 1024k while flash, when # booting the image, the size doesn't matter. define Build/mkubntimage-split - dd if=$@ of=$@.old1 bs=1024k count=1 - dd if=$@ of=$@.old2 bs=1024k skip=1 + -[ -f $@ ] && ( \ + dd if=$@ of=$@.old1 bs=1024k count=1; \ + dd if=$@ of=$@.old2 bs=1024k skip=1; \ $(STAGING_DIR_HOST)/bin/mkfwimage \ -B $(UBNT_BOARD) -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-OpenWrt-$(REVISION) \ -k $@.old1 \ -r $@.old2 \ - -o $@ - rm $@.old1 $@.old2 + -o $@; \ + rm $@.old1 $@.old2 ) endef define Build/mkubntimage2 - $(STAGING_DIR_HOST)/bin/mkfwimage2 -f 0x9f000000 \ + -$(STAGING_DIR_HOST)/bin/mkfwimage2 -f 0x9f000000 \ -v $(UBNT_TYPE).$(UBNT_CHIP).v6.0.0-OpenWrt-$(REVISION) \ -p jffs2:0x50000:0xf60000:0:0:$@ \ -o $@.new |