diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-08-06 12:55:41 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-08-06 12:55:41 +0000 |
commit | dcd0e4a6727611f03eb3d3a75f073235f5f1229c (patch) | |
tree | 828bebc7d3ec6062d8032ea99dfb6cc43d3c2038 /include/image.mk | |
parent | 2769ed671f66a0b5850abe7ff65587a4bb20e448 (diff) | |
download | upstream-dcd0e4a6727611f03eb3d3a75f073235f5f1229c.tar.gz upstream-dcd0e4a6727611f03eb3d3a75f073235f5f1229c.tar.bz2 upstream-dcd0e4a6727611f03eb3d3a75f073235f5f1229c.zip |
work around a threading bug in mksquashfs4 by limiting the number of threads to 1
SVN-Revision: 17146
Diffstat (limited to 'include/image.mk')
-rw-r--r-- | include/image.mk | 2 |
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 |