1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:57:38 +03:00

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
This commit is contained in:
nbd 2009-08-06 12:55:41 +00:00
parent 8489bea056
commit a2b578fb01

View File

@ -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