From: James Lee Date: Thu, 26 Mar 2015 06:17:34 +0000 (-0400) Subject: crypt-loop: Always include 'loop' kernel module X-Git-Tag: 042~19^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F45%2Fhead;p=thirdparty%2Fdracut.git crypt-loop: Always include 'loop' kernel module When the 'loop' kernel module isn't loaded in a running system, it gets excluded from the hostonly initrd. Given that the crypt-loop dracut module has to be loaded explicitly anyway, it makes sense to always include the requisite loop kernel module. --- diff --git a/modules.d/91crypt-loop/module-setup.sh b/modules.d/91crypt-loop/module-setup.sh index ed2cdea1b..ff0d5019e 100755 --- a/modules.d/91crypt-loop/module-setup.sh +++ b/modules.d/91crypt-loop/module-setup.sh @@ -14,7 +14,7 @@ depends() { # called by dracut installkernel() { - instmods loop + hostonly='' instmods loop } # called by dracut