From: Felix Fietkau Date: Thu, 6 Aug 2009 12:55:41 +0000 (+0000) Subject: work around a threading bug in mksquashfs4 by limiting the number of threads to 1 X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=25a843cb1dd7a94831ce2676b027064cc5814946;p=15.05%2Fopenwrt.git work around a threading bug in mksquashfs4 by limiting the number of threads to 1 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17146 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/image.mk b/include/image.mk index 0b2d3e3589..d8cf93fa2c 100644 --- a/include/image.mk +++ b/include/image.mk @@ -29,7 +29,7 @@ endif ifneq ($(USE_SQUASHFS4),) MKSQUASHFS_CMD := $(STAGING_DIR_HOST)/bin/mksquashfs4 -SQUASHFS_OPTS := -lzma +SQUASHFS_OPTS := -lzma -processors 1 else MKSQUASHFS_CMD := $(STAGING_DIR_HOST)/bin/mksquashfs-lzma endif