dracut-module-setup.sh: Don't use squash module for fadump

Squash module is used to save memory. For fadump this is not neccessary
and may slow down the build time, and make it more fragile.

fadump initramfs is used for normal boot as well, although squash module
is capable of being used for generic normal boot, but there are cases
where is doesn't work well. So disable it and make fadump more robust.

Signed-off-by: Kairui Song <kasong@redhat.com>
Tested-by: Hari Bathini <hbathini@linux.ibm.com>
Acked-by: Dave Young <dyoung@redhat.com>
This commit is contained in:
Kairui Song 2019-06-14 15:49:42 +08:00
parent 5b26c1f8b2
commit cf5d362dca
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ depends() {
done
}
if is_squash_available; then
if is_squash_available && ! is_fadump_capable; then
_dep="$_dep squash"
else
dwarning "Required modules to build a squashed kdump image is missing!"