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: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=b475abbaa44e76ca27900ac154b3c43417c08c71 work around a threading bug in mksquashfs4 by limiting the number of threads to 1 SVN-Revision: 17146 --- 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