diff options
author | Felix Fietkau <nbd@openwrt.org> | 2016-01-28 14:13:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2016-01-28 14:13:01 +0000 |
commit | 705ddc9bb944a7ab6ba338984718de2416849a6c (patch) | |
tree | ea3efd33fac3089adf35e1f36c307110d5d1c10c | |
parent | 305e8b724ae5b8448db48e040f3521f9e8051cc9 (diff) | |
download | upstream-705ddc9bb944a7ab6ba338984718de2416849a6c.tar.gz upstream-705ddc9bb944a7ab6ba338984718de2416849a6c.tar.bz2 upstream-705ddc9bb944a7ab6ba338984718de2416849a6c.zip |
ramips: make tp-link firmware size errors non-fatal
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48526
-rw-r--r-- | target/linux/ramips/image/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index fb064077df..6f98b00140 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -158,19 +158,19 @@ endef define MkImageTpl/squashfs $(eval output_name=$(IMG_PREFIX)-$(2)-$(1)-$(if $(4),$(4),sysupgrade).bin) - $(STAGING_DIR_HOST)/bin/mktplinkfw2 -V "ver. 2.0" -B "$(2)" -j \ + -$(STAGING_DIR_HOST)/bin/mktplinkfw2 -V "ver. 2.0" -B "$(2)" -j \ -o $(KDIR)/$(output_name) \ -k $(KDIR)/vmlinux-$(1)$(4).bin.lzma \ - -r $(KDIR)/root.$(1) - $(CP) $(KDIR)/$(output_name) $(BIN_DIR)/$(output_name) + -r $(KDIR)/root.$(1) && \ + $(CP) $(KDIR)/$(output_name) $(BIN_DIR)/$(output_name) endef define MkImageTpl/initramfs $(eval output_name=$(IMG_PREFIX)-$(2)-$(1).bin) - $(STAGING_DIR_HOST)/bin/mktplinkfw2 -V "ver. 2.0" -B "$(2)" -c \ + -$(STAGING_DIR_HOST)/bin/mktplinkfw2 -V "ver. 2.0" -B "$(2)" -c \ -o $(KDIR)/$(output_name) \ - -k $(KDIR)/vmlinux-$(1).bin.lzma - $(CP) $(KDIR)/$(output_name) $(BIN_DIR)/$(output_name) + -k $(KDIR)/vmlinux-$(1).bin.lzma && \ + $(CP) $(KDIR)/$(output_name) $(BIN_DIR)/$(output_name) endef # $(1), lowercase board name like "mt7620a_v22sg" |