Correct if statement for compression options and set zstd to 20 to test how decrease the ISO size .. ( now i building a Kyria Iso fo Gnome )

Signed-off-by: Stefano <stefano@manjaro.org>
This commit is contained in:
Stefano 2019-12-28 17:01:10 +01:00
parent b3ed15d0fe
commit e3712e4a60
No known key found for this signature in database
GPG key ID: 8DB9F8C18DF53602

View file

@ -139,7 +139,9 @@ make_sfs() {
local highcomp
[[ "${iso_compression}" == "xz" ]] && ${highcomp}="-b 256K -Xbcj x86"
[[ "${iso_compression}" == "xz" ]] && highcomp="-b 256K -Xbcj x86"
[[ "${iso_compression}" == "zstd" ]] && highcomp="-b 256K -Xcompression-level 20" #compression level max 22 (default 15)
mksfs_args+=(-comp ${iso_compression} ${highcomp})