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
This commit is contained in:
parent
9e355444a6
commit
5698062707
1 changed files with 0 additions and 2 deletions
|
@ -109,7 +109,6 @@ endif
|
||||||
ifneq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),)
|
ifneq ($(CONFIG_TARGET_ROOTFS_CPIOGZ),)
|
||||||
define Image/mkfs/cpiogz
|
define Image/mkfs/cpiogz
|
||||||
( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/$(IMG_PREFIX)-rootfs.cpio.gz )
|
( cd $(TARGET_DIR); find . | cpio -o -H newc | gzip -9 >$(BIN_DIR)/$(IMG_PREFIX)-rootfs.cpio.gz )
|
||||||
$(call Image/Build,cpiogz)
|
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -117,7 +116,6 @@ ifneq ($(CONFIG_TARGET_ROOTFS_TARGZ),)
|
||||||
define Image/mkfs/targz
|
define Image/mkfs/targz
|
||||||
# Preserve permissions (-p) when building as non-root user
|
# 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)/ .
|
$(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
||||||
$(call Image/Build,targz)
|
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue