diff options
| author | Shiji Yang | 2025-05-01 03:35:36 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-05-08 20:33:17 +0000 |
| commit | ef2310b031a92caf7ff60b0d8694d16d92f7fcb3 (patch) | |
| tree | 6f2de6792970d3a04cfee7a91882472f5d8dc5eb | |
| parent | 5048c9d501ad8547f8bd88cc910ef0aa2f92cc25 (diff) | |
| download | openwrt-ef2310b031a92caf7ff60b0d8694d16d92f7fcb3.tar.gz | |
kernel: modules: update dependency for kmod-tpm
Remove unneeded dependencies asn1 codec and oid.
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Link: https://github.com/openwrt/openwrt/pull/18661
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/kernel/linux/modules/other.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index ff80cd8d27..8da6216cbf 100644 --- a/package/kernel/linux/modules/other.mk +++ b/package/kernel/linux/modules/other.mk @@ -949,11 +949,7 @@ $(eval $(call KernelPackage,keys-trusted)) define KernelPackage/tpm SUBMENU:=$(OTHER_MENU) TITLE:=TPM Hardware Support - DEPENDS:= +kmod-random-core +kmod-asn1-decoder \ - +kmod-asn1-encoder +kmod-oid-registry \ - +!LINUX_6_6:kmod-crypto-ecdh \ - +!LINUX_6_6:kmod-crypto-kpp \ - +!LINUX_6_6:kmod-crypto-lib-aescfb + DEPENDS:= +kmod-random-core KCONFIG:= CONFIG_TCG_TPM FILES:= $(LINUX_DIR)/drivers/char/tpm/tpm.ko AUTOLOAD:=$(call AutoLoad,10,tpm,1) |