From 2ee69a40c8b70ce823b8db922a8f1ea4cf31af4d Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 23 Jan 2020 13:47:53 +0100 Subject: [PATCH] add missing crypto modules for aarch64 Fixes https://github.com/dracutdevs/dracut/issues/711 --- modules.d/90crypt/module-setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/modules.d/90crypt/module-setup.sh b/modules.d/90crypt/module-setup.sh index 254e2a5f..51a045c2 100755 --- a/modules.d/90crypt/module-setup.sh +++ b/modules.d/90crypt/module-setup.sh @@ -28,6 +28,7 @@ installkernel() { arch=$(uname -m) [[ $arch == x86_64 ]] && arch=x86 [[ $arch == s390x ]] && arch=s390 + [[ $arch == aarch64 ]] && arch=arm64 instmods dm_crypt =crypto =drivers/crypto =arch/$arch/crypto }