Compress images using xz instead of gzip (#1018)

The xz compression allows higher compression rates and higher speeds,
a quick measurement lead to this numbers:
gzip --best: compression 131.11s, decompression 9.797s (299M)
xz -3 (single thread): compression 95.13s, decompression 14.902s (228M)
xz -3 (multi thread): compression 12.146s, decompression 14.902s (228M)
This commit is contained in:
Stefan Agner
2020-11-26 00:29:11 +01:00
committed by GitHub
parent 4be3dee0b4
commit 1a6dcbbf5b
9 changed files with 14 additions and 14 deletions

View File

@@ -21,5 +21,5 @@ function hassos_pre_image() {
function hassos_post_image() {
convert_disk_image_gz
convert_disk_image_xz
}