X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=include%2Fimage.mk;h=473e391ae4d414f09c0fb9678ece849922890e4f;hb=9adda4407b4327d1bc18b3046f8504acf1e3b314;hp=65d79f4db886f4ae104708ec4c2b3276296b1f74;hpb=35fca213ea0568086ba80f993876608cfa7ecb23;p=openwrt%2Fsvn-archive%2Farchive.git diff --git a/include/image.mk b/include/image.mk index 65d79f4db8..473e391ae4 100644 --- a/include/image.mk +++ b/include/image.mk @@ -42,6 +42,8 @@ ifneq ($(CONFIG_JFFS2_LZMA),y) JFFS2OPTS += -x lzma endif +SQUASHFS_BLOCKSIZE := 256k +SQUASHFSOPT := -b $(SQUASHFS_BLOCKSIZE) SQUASHFSCOMP := gzip LZMA_XZ_OPTIONS := -Xpreset 9 -Xe -Xlc 0 -Xlp 2 -Xpb 2 ifeq ($(CONFIG_SQUASHFS_LZMA),y) @@ -87,7 +89,7 @@ else ifneq ($(CONFIG_TARGET_ROOTFS_SQUASHFS),) define Image/mkfs/squashfs @mkdir -p $(TARGET_DIR)/overlay - $(STAGING_DIR_HOST)/bin/mksquashfs4 $(TARGET_DIR) $(KDIR)/root.squashfs -nopad -noappend -root-owned -comp $(SQUASHFSCOMP) -processors 1 + $(STAGING_DIR_HOST)/bin/mksquashfs4 $(TARGET_DIR) $(KDIR)/root.squashfs -nopad -noappend -root-owned -comp $(SQUASHFSCOMP) $(SQUASHFSOPT) -processors $(if $(CONFIG_PKG_BUILD_JOBS),$(CONFIG_PKG_BUILD_JOBS),1) $(call Image/Build,squashfs) endef endif