mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 03:32:13 +02:00
Set XZ_COMPRESSION_LEVEL to -9
It is consistent with other compressors also using their best compression. xz is currently the option that offers best compression, using settings even lower than the default is surprising and makes it harder to choose the best available compression. For anyone who cares about compression time using a different option like gzip or bzip2 is the logical choice. For decompression, better compressed is actually faster to decompress. (From OE-Core rev: 9718c2d3fbb3281274af4556b34b7bac21fc7774) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4b4db64156
commit
ef0654f145
@@ -54,7 +54,7 @@ def imagetypes_getdepends(d):
|
||||
# Sort the set so that ordering is consistant
|
||||
return " ".join(sorted(deps))
|
||||
|
||||
XZ_COMPRESSION_LEVEL ?= "-3"
|
||||
XZ_COMPRESSION_LEVEL ?= "-9"
|
||||
XZ_INTEGRITY_CHECK ?= "crc32"
|
||||
|
||||
ZIP_COMPRESSION_LEVEL ?= "-9"
|
||||
|
||||
Reference in New Issue
Block a user