summaryrefslogtreecommitdiff
path: root/lib/mbedtls/port/mbedtls_options.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-02-27 12:11:07 -0600
committerTom Rini <trini@konsulko.com>2025-02-27 12:11:07 -0600
commit32c9a6518dcef9b4250461e70b2c719101a305ef (patch)
tree011ff647a80fae32df757a1e6c8f167eb9eb1f77 /lib/mbedtls/port/mbedtls_options.h
parentb78f8677cde8b1dde31b66f5b780f2e9b62fba7f (diff)
parentac0b1e82ff8540bd106824ddcc8919f85469c5f8 (diff)
Merge patch series "mbedtls: fix incorrect kconfig dependencies on mbedtls"
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 'lib/mbedtls/port/mbedtls_options.h')
-rw-r--r--lib/mbedtls/port/mbedtls_options.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/mbedtls/port/mbedtls_options.h b/lib/mbedtls/port/mbedtls_options.h
new file mode 100644
index 00000000000..885ed6990b6
--- /dev/null
+++ b/lib/mbedtls/port/mbedtls_options.h
@@ -0,0 +1,23 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Internal build options for MbedTLS
+ *
+ * Copyright (c) 2025 Linaro Limited
+ * Author: Raymond Mao <raymond.mao@linaro.org>
+ */
+
+#ifndef _MBEDTLS_OPT_H
+#define _MBEDTLS_OPT_H
+
+/*
+ * FIXME:
+ * U-Boot/MbedTLS port requires to access a few of members which are defined
+ * as private in MbedTLS context.
+ * E.g: x509_internal.h, mbedtls_sha256_context and mbedtls_sha1_context.
+ * MBEDTLS_ALLOW_PRIVATE_ACCESS needs to be enabled to allow the external
+ * access, but directly including <external/mbedtls/library/common.h> is not
+ * allowed, since this will include <malloc.h> and break the sandbox test.
+ */
+#define MBEDTLS_ALLOW_PRIVATE_ACCESS
+
+#endif /* _MBEDTLS_OPT_H */