mirror of
https://github.com/Kron4ek/Conty
synced 2024-12-26 09:58:38 +01:00
Use lower compression level
In my testing, compression using level 14 is almost 3x faster than level 19, while compression ratio is only about 2% lower. In my opinion, it's definitely worth it.
This commit is contained in:
parent
b03f6dcab2
commit
62f247ee57
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ EOF
|
|||
# Create a squashfs image
|
||||
clear
|
||||
echo "Creating a squashfs image"
|
||||
bash "${script}" mksquashfs sqfs image -b 256K -comp zstd -Xcompression-level 19
|
||||
bash "${script}" mksquashfs sqfs image -b 256K -comp zstd -Xcompression-level 14
|
||||
|
||||
# Combine into a single executable
|
||||
clear
|
||||
|
|
Loading…
Reference in a new issue