diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2022-02-19 17:54:22 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2022-04-06 14:03:58 +0100 |
commit | 82e1f041f9a6cf9232c9f73938ef3b11c34cca0f (patch) | |
tree | 66312fc75418997996ece990b737ccdf6bd49bd7 | |
parent | ec2bc81c78585755491f9a1a3f30edb6312025f0 (diff) | |
download | upstream-82e1f041f9a6cf9232c9f73938ef3b11c34cca0f.tar.gz upstream-82e1f041f9a6cf9232c9f73938ef3b11c34cca0f.tar.bz2 upstream-82e1f041f9a6cf9232c9f73938ef3b11c34cca0f.zip |
image: let mksquashfs4 use all processors
Drop the -processors argument from the mksquashfs4 call, so it will use
all available processors. This dramatically reduces the time to create
squashfs filesystems.
The times below are observed when building an image for my main router,
the WatchGuard Firebox M300 (qoriq target):
Before:
real 4m45,973s
After:
real 0m23,497s
With this commit `mksquashfs` may use more cores than defined via `-j`.
This is the same behaviour as for archive creation of ImageBuilder, SDK
or toolchain. There is no trivial way to limit `mksquashfs` CPU core
usage to the amount of "free" make jobs since two running `mksquashfs`
instances would each run with the total allowed number (-j) of threads.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
[extended reasoning in commit message]
Signed-off-by: Paul Spooren <mail@aparcar.org>
(cherry picked from commit df2ae8826ced4f374bcb693b44d8a113ad150d70)
-rw-r--r-- | include/image.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/image.mk b/include/image.mk index 275a0adcac..a7b04bac6b 100644 --- a/include/image.mk +++ b/include/image.mk @@ -229,8 +229,7 @@ $(eval $(foreach S,$(NAND_BLOCKSIZE),$(call Image/mkfs/jffs2-nand/template,$(S)) define Image/mkfs/squashfs-common $(STAGING_DIR_HOST)/bin/mksquashfs4 $(call mkfs_target_dir,$(1)) $@ \ -nopad -noappend -root-owned \ - -comp $(SQUASHFSCOMP) $(SQUASHFSOPT) \ - -processors 1 + -comp $(SQUASHFSCOMP) $(SQUASHFSOPT) endef ifeq ($(CONFIG_TARGET_ROOTFS_SECURITY_LABELS),y) |