From: John Crispin Date: Tue, 26 Apr 2016 11:43:24 +0000 (+0000) Subject: include: add a no dict version of lzma to new image build code X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=bc7ae9546b51b799f498818b05ebe30069ee5245 include: add a no dict version of lzma to new image build code Required to compress kernels in a brnboot compatible way. Signed-off-by: Mathias Kresin SVN-Revision: 49240 --- diff --git a/include/image.mk b/include/image.mk index 7c11aa1c13..bc383e6ba8 100644 --- a/include/image.mk +++ b/include/image.mk @@ -336,7 +336,11 @@ define Build/fit endef define Build/lzma - $(STAGING_DIR_HOST)/bin/lzma e $@ -lc1 -lp2 -pb2 $(1) $@.new + $(call Build/lzma-no-dict,-lc1 -lp2 -pb2 $(1)) +endef + +define Build/lzma-no-dict + $(STAGING_DIR_HOST)/bin/lzma e $@ $(1) $@.new @mv $@.new $@ endef