From: Hendrik Brueckner Date: Wed, 25 Apr 2018 15:29:26 +0000 (+0200) Subject: crypt: correct s390 arch to include arch-specific crypto modules X-Git-Tag: 048~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c8a69677b53562dcde0849f5497fd90e7bd358e;p=thirdparty%2Fdracut.git crypt: correct s390 arch to include arch-specific crypto modules Convert the s390x into s390 to also include s390-specific crypto modules, for example, aes_s390 into the initramfs. Signed-off-by: Hendrik Brueckner --- diff --git a/modules.d/90crypt/module-setup.sh b/modules.d/90crypt/module-setup.sh index b7232e987..1ec590964 100755 --- a/modules.d/90crypt/module-setup.sh +++ b/modules.d/90crypt/module-setup.sh @@ -27,6 +27,7 @@ installkernel() { hostonly="" instmods drbg arch=$(arch) [[ $arch == x86_64 ]] && arch=x86 + [[ $arch == s390x ]] && arch=s390 instmods dm_crypt =crypto =drivers/crypto =arch/$arch/crypto }