diff options
| author | Raymond Mao <[email protected]> | 2025-02-03 14:08:12 -0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-02-27 12:11:02 -0600 |
| commit | a26e957381ecba59603a3ca455c30d6f8eae0ce7 (patch) | |
| tree | fe9543a8114249d06de385bc39236e5c2de2b2bc /lib | |
| parent | b78f8677cde8b1dde31b66f5b780f2e9b62fba7f (diff) | |
mbedtls: fix incorrect kconfig dependencies on mbedtls
Fixed the building failures when WGET_HTTPS,NET_LWIP and MBEDTLS_LIB
are selected due to a few incorrect kconfig dependencies.
Signed-off-by: Raymond Mao <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/mbedtls/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/mbedtls/Kconfig b/lib/mbedtls/Kconfig index 35d8c507a89..bb8ac5f862b 100644 --- a/lib/mbedtls/Kconfig +++ b/lib/mbedtls/Kconfig @@ -156,6 +156,7 @@ endif # LEGACY_CRYPTO_BASIC config LEGACY_CRYPTO_CERT bool "legacy certificate libraries" + depends on LEGACY_CRYPTO select ASN1_DECODER_LEGACY if ASN1_DECODER select ASYMMETRIC_PUBLIC_KEY_LEGACY if \ ASYMMETRIC_PUBLIC_KEY_SUBTYPE @@ -491,7 +492,7 @@ config MBEDTLS_LIB_TLS depends on ASYMMETRIC_PUBLIC_KEY_MBEDTLS depends on ASN1_DECODER_MBEDTLS depends on ASYMMETRIC_PUBLIC_KEY_MBEDTLS - depends on MBEDTLS_LIB_CRYPTO + depends on MBEDTLS_LIB help Enable MbedTLS TLS library. Required for HTTPs support in wget |
