summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-08-06 12:55:41 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-08-06 12:55:41 +0000
commitdcd0e4a6727611f03eb3d3a75f073235f5f1229c (patch)
tree828bebc7d3ec6062d8032ea99dfb6cc43d3c2038 /include
parent2769ed671f66a0b5850abe7ff65587a4bb20e448 (diff)
downloadmaster-31e0f0ae-dcd0e4a6727611f03eb3d3a75f073235f5f1229c.tar.gz
master-31e0f0ae-dcd0e4a6727611f03eb3d3a75f073235f5f1229c.tar.bz2
master-31e0f0ae-dcd0e4a6727611f03eb3d3a75f073235f5f1229c.zip
work around a threading bug in mksquashfs4 by limiting the number of threads to 1
SVN-Revision: 17146
Diffstat (limited to 'include')
-rw-r--r--include/image.mk2
1 files changed, 1 insertions, 1 deletions
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