We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f44ad commit 654ed69Copy full SHA for 654ed69
features/compress/bin/compress-image
@@ -8,10 +8,10 @@ case "$compress_method" in
8
gzip|gz) set -- gzip --best ;;
9
bzip2|bz2) set -- bzip2 --best ;;
10
lz4) set -- lz4 --best ;;
11
- lzma) set -- lzma --best ;;
+ lzma) set -- lzma --best -T0 ;;
12
lzo) set -- lzop --best ;;
13
- xz) set -- xz --best --check=crc32 ;;
14
- zstd) set -- zstd -19 ;;
+ xz) set -- xz --best --check=crc32 -T0 ;;
+ zstd) set -- zstd -19 -T0 ;;
15
'') exit 0 ;;
16
*) fatal "Unknown compress method: $compress_method"
17
esac
0 commit comments