diff options
author | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2012-02-16 17:54:04 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2012-02-16 17:54:04 +0000 |
commit | 8676e49d9d28bdea89a904ed875d82ce4d5edf4c (patch) | |
tree | bae59a0a09e75a1111265e92918db2eb64a2fcf8 /target/linux/x86/image | |
parent | ab09db09fc99c552b18fb9eba56917b8a541ea19 (diff) | |
download | upstream-8676e49d9d28bdea89a904ed875d82ce4d5edf4c.tar.gz upstream-8676e49d9d28bdea89a904ed875d82ce4d5edf4c.tar.bz2 upstream-8676e49d9d28bdea89a904ed875d82ce4d5edf4c.zip |
Allow gzipping of squashfs images with padded jffs2 partition
SVN-Revision: 30589
Diffstat (limited to 'target/linux/x86/image')
-rw-r--r-- | target/linux/x86/image/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index 6db12fca1c..26e34ff6d6 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -177,6 +177,9 @@ ifneq ($(CONFIG_TARGET_IMAGES_GZIP),) $(call Image/Build/gzip,ext4) endef ifneq ($(CONFIG_TARGET_IMAGES_PAD),) + define Image/Build/gzip/squashfs + $(call Image/Build/gzip,squashfs) + endef define Image/Build/gzip/jffs2-64k $(call Image/Build/gzip,jffs2-64k) endef |