diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2021-04-13 17:18:27 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2021-04-14 08:42:38 +0200 |
commit | 48262735d9b7b824e947d8ea0b6b8571f678f265 (patch) | |
tree | 2d7406d2b42cab2904f250491eb050e8d1a26b7d /package/kernel/linux | |
parent | 6fd65c657351908302b37447675ee352ec927d93 (diff) | |
download | upstream-48262735d9b7b824e947d8ea0b6b8571f678f265.tar.gz upstream-48262735d9b7b824e947d8ea0b6b8571f678f265.tar.bz2 upstream-48262735d9b7b824e947d8ea0b6b8571f678f265.zip |
kernel: crypto: format "crypto-hw-ccp" dependencies
Use multiples lines for better readability and sort lines.
Suggested-by: Stijn Tintel <stijn@linux-ipv6.be>
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
(cherry picked from commit 107111adbba16328f9853a4d89db4a103b20118c)
Diffstat (limited to 'package/kernel/linux')
-rw-r--r-- | package/kernel/linux/modules/crypto.mk | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index 19b0d4696b..b8b9e5f9fd 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -313,7 +313,14 @@ $(eval $(call KernelPackage,crypto-hmac)) define KernelPackage/crypto-hw-ccp TITLE:=AMD Cryptographic Coprocessor - DEPENDS:=+kmod-crypto-authenc +kmod-crypto-hash +kmod-crypto-manager +kmod-random-core +kmod-crypto-sha1 +kmod-crypto-sha256 +kmod-crypto-rsa + DEPENDS:= \ + +kmod-crypto-authenc \ + +kmod-crypto-hash \ + +kmod-crypto-manager \ + +kmod-crypto-rsa \ + +kmod-crypto-sha1 \ + +kmod-crypto-sha256 \ + +kmod-random-core KCONFIG:= \ CONFIG_CRYPTO_HW=y \ CONFIG_CRYPTO_DEV_CCP=y \ |