fadump: use 'zstd' as the default compression method
If available, use 'zstd' compression method to optimize the size of the initrd built with fadump support. Also, 'squash+zstd' is not preferred because more disk space is consumed with 'squash+zstd' due to the additional binaries needed for fadump with squash case. Signed-off-by: Hari Bathini <hbathini@linux.ibm.com> Acked-by: Tao Liu <ltao@redhat.com> Reviewed-by: Philipp Rudo <prudo@redhat.com>
This commit is contained in:
parent
e96e441b36
commit
f98bd5895e
@ -62,11 +62,9 @@ _dracut_isolate_args=(
|
|||||||
/usr/lib/dracut/fadump-kernel-modules.txt
|
/usr/lib/dracut/fadump-kernel-modules.txt
|
||||||
)
|
)
|
||||||
|
|
||||||
# Same as setting zstd in mkdumprd
|
# Use zstd compression method, if available
|
||||||
if ! have_compression_in_dracut_args; then
|
if ! have_compression_in_dracut_args; then
|
||||||
if is_squash_available && dracut_have_option "--squash-compressor"; then
|
if is_zstd_command_available; then
|
||||||
_dracut_isolate_args+=(--squash-compressor zstd)
|
|
||||||
elif is_zstd_command_available; then
|
|
||||||
_dracut_isolate_args+=(--compress zstd)
|
_dracut_isolate_args+=(--compress zstd)
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user