From 47371a269804533d42f343dd384b3f8f9c8d5abe Mon Sep 17 00:00:00 2001 From: Jonas Gorski Date: Fri, 14 Aug 2015 15:10:47 +0000 Subject: [PATCH] brcm63xx: move gzip build command to include/image.mk Allow other targets to make use of it. Signed-off-by: Jonas Gorski SVN-Revision: 46601 --- include/image.mk | 5 +++++ target/linux/brcm63xx/image/Makefile | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/image.mk b/include/image.mk index 56c60d6087..73fc805bb5 100644 --- a/include/image.mk +++ b/include/image.mk @@ -323,6 +323,11 @@ define Build/lzma @mv $@.new $@ endef +define Build/gzip + gzip -9n -c $@ $(1) > $@.new + @mv $@.new $@ +endef + define Build/kernel-bin rm -f $@ cp $^ $@ diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile index f15b30b5f1..90b9fa68eb 100755 --- a/target/linux/brcm63xx/image/Makefile +++ b/target/linux/brcm63xx/image/Makefile @@ -38,11 +38,6 @@ define Build/append-dtb cat $@.dtb >> $@ endef -define Build/gzip - gzip -9 -c $@ > $@.gz - mv $@.gz $@ -endef - define Build/hcs-initramfs $(STAGING_DIR_HOST)/bin/hcsmakeimage --magic_bytes=$(HCS_MAGIC_BYTES) \ --rev_maj=$(HCS_REV_MAJ) --rev_min=$(HCS_REV_MIN) --input_file=$@ \ -- 2.30.2