diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2018-11-02 20:36:35 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-12-15 14:28:49 +0100 |
commit | 5f67559b421b53c842fa2e7e67ed09b50070a789 (patch) | |
tree | ef1cf2a749942a39ce5172c2dea43c5569978040 /package | |
parent | 35e0f600d8c1304e25a3996efdef905c1387295c (diff) | |
download | upstream-5f67559b421b53c842fa2e7e67ed09b50070a789.tar.gz upstream-5f67559b421b53c842fa2e7e67ed09b50070a789.tar.bz2 upstream-5f67559b421b53c842fa2e7e67ed09b50070a789.zip |
kernel: Remove crypto/ablk_helper.ko on kernel 4.19
This module was removed in kernel 4.17, all users are refactored to not
need this any more.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/linux/modules/crypto.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index 4892f14932..1fc4ffb7ed 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -500,10 +500,10 @@ ifndef CONFIG_TARGET_x86_64 $(LINUX_DIR)/arch/x86/crypto/twofish-i586.ko \ $(LINUX_DIR)/arch/x86/crypto/serpent-sse2-i586.ko \ $(LINUX_DIR)/arch/x86/crypto/glue_helper.ko \ - $(LINUX_DIR)/crypto/ablk_helper.ko \ + $(LINUX_DIR)/crypto/ablk_helper.ko@lt4.17 \ $(LINUX_DIR)/crypto/cryptd.ko \ $(LINUX_DIR)/crypto/lrw.ko - AUTOLOAD+= $(call AutoLoad,10,lrw cryptd ablk_helper glue_helper \ + AUTOLOAD+= $(call AutoLoad,10,lrw cryptd glue_helper \ serpent-sse2-i586 twofish-i586 blowfish_generic) endef endif @@ -522,8 +522,8 @@ define KernelPackage/crypto-misc/x86/64 $(LINUX_DIR)/arch/x86/crypto/serpent-avx-x86_64.ko \ $(LINUX_DIR)/arch/x86/crypto/camellia-aesni-avx2.ko \ $(LINUX_DIR)/arch/x86/crypto/serpent-avx2.ko \ - $(LINUX_DIR)/crypto/ablk_helper.ko - AUTOLOAD+= $(call AutoLoad,10,ablk_helper camellia-x86_64 \ + $(LINUX_DIR)/crypto/ablk_helper.ko@lt4.17 + AUTOLOAD+= $(call AutoLoad,10,camellia-x86_64 \ camellia-aesni-avx-x86_64 camellia-aesni-avx2 cast5-avx-x86_64 \ cast6-avx-x86_64 twofish-x86_64 twofish-x86_64-3way \ twofish-avx-x86_64 blowfish-x86_64 serpent-avx-x86_64 serpent-avx2) |