summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2020-09-15 17:40:01 +0200
committerJonathan Bauer2020-09-15 17:40:01 +0200
commit7f997e0cf2d2179cf566d92a63c5662377bfbe8f (patch)
tree9e4273db0101c64c44206de77cd57af55b8b651b
parent[haveged] move haveged start to basic.target (diff)
downloadsystemd-init-7f997e0cf2d2179cf566d92a63c5662377bfbe8f.tar.gz
systemd-init-7f997e0cf2d2179cf566d92a63c5662377bfbe8f.tar.xz
systemd-init-7f997e0cf2d2179cf566d92a63c5662377bfbe8f.zip
[slx-dmsetup] explicitely add aes-xts-plain64 related kernel modules
-rwxr-xr-xmodules.d/slx-dmsetup/module-setup.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/modules.d/slx-dmsetup/module-setup.sh b/modules.d/slx-dmsetup/module-setup.sh
index 88814fc9..3c6c034b 100755
--- a/modules.d/slx-dmsetup/module-setup.sh
+++ b/modules.d/slx-dmsetup/module-setup.sh
@@ -3,7 +3,7 @@ check() {
return 255
}
depends() {
- echo "slx-tools"
+ echo "haveged slx-tools"
}
install() {
inst "$moddir/scripts/dmsetup-slx-device" "/usr/local/bin/dmsetup-slx-device"
@@ -13,13 +13,12 @@ install() {
# deliberatly left ext helpers out for now, since we don't really use it.
inst_multiple blockdev xxd \
mkfs.ext4 resize2fs \
- mkfs.xfs \
- xfs_repair xfs_growfs
+ mkfs.xfs xfs_repair xfs_growfs
}
installkernel() {
# install those modules in case the used kernel does not have them builtin
instmods \
- dm-thin-pool dm-snapshot dm-zero \
- dm-crypt crc32c xts \
+ dm-thin-pool dm-snapshot dm-zero dm-crypt \
+ crc32c xts aes drbg ansi_cprng \
xfs ext4
}