From 7e82b41220ceb8067c157c779e1a40f0a6d69b99 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Mon, 14 Jan 2013 06:46:46 +0200 Subject: [PATCH] LuksRoot: fix crypto module list. This one should finally work well. --- modules/system/boot/luksroot.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/system/boot/luksroot.nix b/modules/system/boot/luksroot.nix index 86523c56c6f5..a514b08a6a8d 100644 --- a/modules/system/boot/luksroot.nix +++ b/modules/system/boot/luksroot.nix @@ -62,7 +62,10 @@ in }; boot.initrd.luks.cryptoModules = mkOption { - default = [ "aes" "blowfish" "twofish" "serpent" "cbc" "xts" "lrw" "sha256" "sha1" "sha2" ]; + default = [ "aes" "aes_generic" "aes_x86_64" "aes_i586" "blowfish" "twofish" "serpent" "cbc" "xts" "lrw" "sha256" +"sha1" +"sha2" +]; description = '' A list of cryptographic kernel modules needed to decrypt the root device(s). The default includes all common modules.