summaryrefslogtreecommitdiff
path: root/include/image.mk
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2012-12-04 22:59:05 +0000
committerFlorian Fainelli <florian@openwrt.org>2012-12-04 22:59:05 +0000
commit569806270732bee9ac1dbbf5a09f8913e6da9c4a (patch)
tree167e87d8da51efa5987abd21064d2dbd6086968b /include/image.mk
parent9e355444a65cbde194e6a404d16d09eab3fe2fd6 (diff)
downloadmtk-20170518-569806270732bee9ac1dbbf5a09f8913e6da9c4a.zip
mtk-20170518-569806270732bee9ac1dbbf5a09f8913e6da9c4a.tar.gz
mtk-20170518-569806270732bee9ac1dbbf5a09f8913e6da9c4a.tar.bz2
Revert "include/image.mk: call Image/Build/{cpiogz,targz}"
This breaks on platforms building their own targz/cpioz images. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 34498
Diffstat (limited to 'include/image.mk')
-rw-r--r--include/image.mk2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/image.mk b/include/image.mk
index 7758c9a..503115d 100644
--- a/include/image.mk
+++ b/include/image.mk
@@ -109,7 +109,6 @@ endif
ifneq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),)
define Image/mkfs/cpiogz
( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/$(IMG_PREFIX)-rootfs.cpio.gz )
- $(call Image/Build,cpiogz)
endef
endif
@@ -117,7 +116,6 @@ ifneq ($(CONFIG_TARGET_ROOTFS_TARGZ),)
define Image/mkfs/targz
# Preserve permissions (-p) when building as non-root user
$(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
- $(call Image/Build,targz)
endef
endif