diff options
author | Mark H Weaver <mhw@netris.org> | 2016-01-22 20:53:04 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-02-03 16:48:06 -0500 |
commit | dfb9001ad8c32418e5348f8c273698b1af2d429e (patch) | |
tree | 84d99f9f84316318cf2e8a4b1c6d446b8530080e /gnu/system | |
parent | cc023e320ec9fe5adbbc8b44ddca5f853f8dad42 (diff) | |
download | guix-dfb9001ad8c32418e5348f8c273698b1af2d429e.tar guix-dfb9001ad8c32418e5348f8c273698b1af2d429e.tar.gz |
linux-initrd: Add serpent_generic and wp512 to the default set of modules.
Adds modules needed for encrypted root partitions using the Serpent cipher or
Whirlpool digest algorithms.
* gnu/system/linux-initrd.scm (base-initrd)[linux-modules]: Add
"serpent_generic" and "wp512".
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/linux-initrd.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 37c042b5ab..f6bd84f02e 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -181,7 +181,7 @@ loaded at boot time in the order in which they appear." `("ahci" ;for SATA controllers "usb-storage" "uas" ;for the installation image etc. "usbhid" "hid-generic" "hid-apple" ;keyboards during early boot - "dm-crypt" "xts" ;for encrypted root partitions + "dm-crypt" "xts" "serpent_generic" "wp512" ;for encrypted root partitions ,@(if (string-match "^(x86_64|i[3-6]86)-" (%current-system)) '("pata_acpi" "pata_atiixp" ;for ATA controllers "isci") ;for SAS controllers like Intel C602 |