From: Sebastian Pipping Date: Sat, 25 Feb 2012 00:30:55 +0000 (+0100) Subject: Make sure the sha256 module makes it into the initramfs (bug #405495) X-Git-Tag: v3.4.25~1^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1159b4c2f6c7cb672941e4786b4d1b427c25748a;p=genkernel.git Make sure the sha256 module makes it into the initramfs (bug #405495) --- diff --git a/ChangeLog b/ChangeLog index 370f6fc..11b18a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,11 @@ # Distributed under the GPL v2 # $Id$ + 25 Feb 2012; Sebastian Pipping arch/x86/modules_load, + arch/x86_64/modules_load, defaults/modules_load: + Make sure the sha256 module makes it into the initramfs (bug #405495). + Reported by Ogelpre. + 24 Jan 2012; Sebastian Pipping .gitignore, genkernel: Bump version to 3.4.24 diff --git a/arch/x86/modules_load b/arch/x86/modules_load index a9383e5..bce80c1 100644 --- a/arch/x86/modules_load +++ b/arch/x86/modules_load @@ -27,3 +27,5 @@ MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl8 # Filesystems MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs fuse" +# Crypto +MODULES_CRYPTO="sha256_generic" diff --git a/arch/x86_64/modules_load b/arch/x86_64/modules_load index d12f57d..7ec2d6e 100644 --- a/arch/x86_64/modules_load +++ b/arch/x86_64/modules_load @@ -25,3 +25,6 @@ MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl8 # Filesystems MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs fuse" + +# Crypto +MODULES_CRYPTO="sha256_generic" diff --git a/defaults/modules_load b/defaults/modules_load index 269a40c..82db084 100644 --- a/defaults/modules_load +++ b/defaults/modules_load @@ -26,3 +26,5 @@ MODULES_USB="ehci-hcd uhci usb-ohci hid usb-storage uhci-hcd ohci-hcd usbhid sl8 # Filesystems MODULES_FS="ext2 ext3 ext4 btrfs reiserfs jfs nfs xfs fuse" +# Crypto +MODULES_CRYPTO="sha256_generic"