diff options
author | Tom Rini <trini@konsulko.com> | 2025-02-27 12:11:07 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-02-27 12:11:07 -0600 |
commit | 32c9a6518dcef9b4250461e70b2c719101a305ef (patch) | |
tree | 011ff647a80fae32df757a1e6c8f167eb9eb1f77 /include/crypto | |
parent | b78f8677cde8b1dde31b66f5b780f2e9b62fba7f (diff) | |
parent | ac0b1e82ff8540bd106824ddcc8919f85469c5f8 (diff) | |
download | u-boot-master.tar.gz |
Merge patch series "mbedtls: fix incorrect kconfig dependencies on mbedtls"HEADmasterWIP/27Feb2025
This series from Raymond Mao <raymond.mao@linaro.org> fixes assorted
problems with how dependencies were expressed in Kconfig for mbedtls and
assorted algorithms.
Link: https://lore.kernel.org/r/20250203220825.707590-1-raymond.mao@linaro.org
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/mscode.h | 1 | ||||
-rw-r--r-- | include/crypto/pkcs7_parser.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/crypto/mscode.h b/include/crypto/mscode.h index 678e69001b9..55501c22acb 100644 --- a/include/crypto/mscode.h +++ b/include/crypto/mscode.h @@ -10,6 +10,7 @@ #include <crypto/hash_info.h> #endif #if CONFIG_IS_ENABLED(MBEDTLS_LIB_X509) +#include "mbedtls_options.h" #include <mbedtls/asn1.h> #include <mbedtls/oid.h> #endif diff --git a/include/crypto/pkcs7_parser.h b/include/crypto/pkcs7_parser.h index 469c2711fa6..fd1e48da09e 100644 --- a/include/crypto/pkcs7_parser.h +++ b/include/crypto/pkcs7_parser.h @@ -12,6 +12,7 @@ #include <crypto/pkcs7.h> #include <crypto/x509_parser.h> #if CONFIG_IS_ENABLED(MBEDTLS_LIB_X509) +#include "mbedtls_options.h" #include <mbedtls/pkcs7.h> #include <library/x509_internal.h> #include <mbedtls/asn1.h> |