diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2022-05-15 22:42:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2022-05-15 22:43:22 -0700 |
commit | 63da86622d47e919ebb08c894b1552d71151473a (patch) | |
tree | ecb0987c9a6ff2251ad19eea9e44d354c4ebd966 /defaults | |
parent | Add support for LUKS detached header (another attempt) (diff) | |
download | genkernel-63da86622d47e919ebb08c894b1552d71151473a.tar.gz genkernel-63da86622d47e919ebb08c894b1552d71151473a.tar.bz2 genkernel-63da86622d47e919ebb08c894b1552d71151473a.zip |
defaults/modules_load: more crypto modules
Needed more cryptsetup in weirder cases. Maybe better in future to
provide easier way to detect these and/or match dracut's code for module
selection.
Based on old https://github.com/robbat2/genkernel/pull/29 submission
Closes: https://github.com/robbat2/genkernel/pull/29
Suggested-by: David Guglielmi <david.guglielmi@gmail.com>
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'defaults')
-rw-r--r-- | defaults/modules_load | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/defaults/modules_load b/defaults/modules_load index 1c784158..2ca20467 100644 --- a/defaults/modules_load +++ b/defaults/modules_load @@ -30,7 +30,7 @@ MODULES_USB="ehci-pci ehci-hcd xhci-hcd xhci-pci xhci-plat xhci-plat-hcd uhci us MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs zfs f2fs fuse virtiofs loop squashfs aufs overlay cramfs configfs fscrypto msdos" # Crypto -MODULES_CRYPTO="sha256_generic cbc crc32 crc32c crc32c_generic crc32_generic aes_generic xts af_alg algif_skcipher algif_hash algif_aead algif_rng serpent_generic" +MODULES_CRYPTO="sha256_generic cbc crc32 crc32c crc32c_generic crc32_generic aes_generic xts af_alg algif_skcipher algif_hash algif_aead algif_rng serpent_generic ecb blake2b_generic blake2s_generic ccm cfb cmac chacha20poly1305 chacha_generic curve25519-generic ofb pcbc sha3_generic vmac xcbc" # Hyper-V MODULES_HYPERV="hv_sock hv_utils hv_vmbus hv_balloon hyperv-keyboard hid_hyperv hv_utils hyperv_fb hv_storvsc" |