mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 13:56:20 +00:00
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 <raymond.mao@linaro.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
b78f8677cd
commit
a26e957381
2 changed files with 2 additions and 2 deletions
|
@ -2168,7 +2168,6 @@ config WGET_HTTPS
|
|||
select ASYMMETRIC_PUBLIC_KEY_SUBTYPE
|
||||
select X509_CERTIFICATE_PARSER
|
||||
select PKCS7_MESSAGE_PARSER
|
||||
select MBEDTLS_LIB_CRYPTO
|
||||
select MBEDTLS_LIB_TLS
|
||||
select RSA_VERIFY_WITH_PKEY
|
||||
select X509_CERTIFICATE_PARSER
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue