summaryrefslogtreecommitdiffstats
path: root/include/image.mk
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-08-06 12:55:41 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-08-06 12:55:41 +0000
commita2b578fb01bf8a13ddf362f1a4f9952e3aaa12a6 (patch)
treefeae4a244fe2a06d25681d594848f92febe08641 /include/image.mk
parent8489bea0569c6cf50b94964d2101caf4d85477fd (diff)
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
Diffstat (limited to 'include/image.mk')
-rw-r--r--include/image.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk
index 0b2d3e358..d8cf93fa2 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