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/legacy.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/legacy.mk')
-rw-r--r-- | target/linux/ar71xx/image/legacy.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/target/linux/ar71xx/image/legacy.mk b/target/linux/ar71xx/image/legacy.mk index d4f959430f..ec28fcbe77 100644 --- a/target/linux/ar71xx/image/legacy.mk +++ b/target/linux/ar71xx/image/legacy.mk @@ -659,18 +659,18 @@ endef define Image/Build/CyberTAN echo -n '' > $(KDIR_TMP)/empty.bin - $(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/image.tmp \ + -$(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/image.tmp \ -f $(KDIR_TMP)/vmlinux-$(2).uImage -F $(KDIR_TMP)/empty.bin \ - -x 32 -a 0x10000 -x -32 -f $(KDIR)/root.$(1) - -$(STAGING_DIR_HOST)/bin/addpattern -B $(2) -v v$(5) \ + -x 32 -a 0x10000 -x -32 -f $(KDIR)/root.$(1) && \ + $(STAGING_DIR_HOST)/bin/addpattern -B $(2) -v v$(5) \ -i $(KDIR)/image.tmp \ -o $(call sysupname,$(1),$(2)) - $(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/image.tmp -f $(KDIR_TMP)/vmlinux-$(2).uImage \ - -x 32 -a 0x10000 -x -32 -f $(KDIR)/root.$(1) - -$(STAGING_DIR_HOST)/bin/addpattern -B $(2) -v v$(5) -g \ + -$(STAGING_DIR_HOST)/bin/trx -o $(KDIR)/image.tmp -f $(KDIR_TMP)/vmlinux-$(2).uImage \ + -x 32 -a 0x10000 -x -32 -f $(KDIR)/root.$(1) && \ + $(STAGING_DIR_HOST)/bin/addpattern -B $(2) -v v$(5) -g \ -i $(KDIR)/image.tmp \ -o $(call factoryname,$(1),$(2)) - rm $(KDIR)/image.tmp + -rm $(KDIR)/image.tmp endef Image/Build/CyberTANGZIP/loader=$(call Image/BuildLoader,$(1),gz,$(2),0x80060000) |