1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 05:58:53 +02:00

GZip only ext4 and padded images

SVN-Revision: 30588
This commit is contained in:
Vasilis Tsiligiannis 2012-02-16 17:54:01 +00:00
parent b4f51343c6
commit ab09db09fc
2 changed files with 7 additions and 4 deletions

@ -82,6 +82,7 @@ config TARGET_IMAGES_PAD
config TARGET_IMAGES_GZIP
bool "GZip images"
depends TARGET_IMAGES_PAD || TARGET_ROOTFS_EXT4FS
default y
config TARGET_KERNEL_PARTSIZE

@ -176,12 +176,14 @@ ifneq ($(CONFIG_TARGET_IMAGES_GZIP),)
define Image/Build/gzip/ext4
$(call Image/Build/gzip,ext4)
endef
define Image/Build/gzip/jffs2-64k
ifneq ($(CONFIG_TARGET_IMAGES_PAD),)
define Image/Build/gzip/jffs2-64k
$(call Image/Build/gzip,jffs2-64k)
endef
define Image/Build/gzip/jffs2-128k
endef
define Image/Build/gzip/jffs2-128k
$(call Image/Build/gzip,jffs2-128k)
endef
endef
endif
endif
define Image/BuildKernel