diff options
author | Raymond Mao <raymond.mao@linaro.org> | 2024-04-16 12:00:19 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-04-16 13:10:06 -0600 |
commit | 8c492934a649ebb155119a62c0a4698f69953b1c (patch) | |
tree | 93f867d49e68ac5f1b3d05be307962546afd1cc8 | |
parent | e857b69aafeccafaee4fd747e5765f599211a9ee (diff) | |
download | u-boot-TEST/v1-mbedtls.zip u-boot-TEST/v1-mbedtls.tar.gz u-boot-TEST/v1-mbedtls.tar.bz2 |
configs: enable MbedTLS as default settingTEST/v1-mbedtls
Enable MbedTLS as default setting for qemu arm64
Signed-off-by: Raymond Mao <raymond.mao@linaro.org>
-rw-r--r-- | configs/qemu_arm64_defconfig | 5 | ||||
-rw-r--r-- | configs/sandbox_defconfig | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/configs/qemu_arm64_defconfig b/configs/qemu_arm64_defconfig index 7e166f4..587a3fb 100644 --- a/configs/qemu_arm64_defconfig +++ b/configs/qemu_arm64_defconfig @@ -67,4 +67,9 @@ CONFIG_TPM2_MMIO=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_PCI=y CONFIG_SEMIHOSTING=y +CONFIG_MBEDTLS_LIB=y +CONFIG_MBEDTLS_LIB_CRYPTO=y +CONFIG_MBEDTLS_LIB_X509=y +# CONFIG_MBEDTLS_LIB_TLS is not set CONFIG_TPM=y +CONFIG_EFI_SECURE_BOOT=y diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig index 93b52f2..6f36fa0 100644 --- a/configs/sandbox_defconfig +++ b/configs/sandbox_defconfig @@ -343,6 +343,10 @@ CONFIG_FS_CBFS=y CONFIG_FS_CRAMFS=y CONFIG_ADDR_MAP=y CONFIG_CMD_DHRYSTONE=y +CONFIG_MBEDTLS_LIB=y +CONFIG_MBEDTLS_LIB_CRYPTO=y +CONFIG_MBEDTLS_LIB_X509=y +# CONFIG_MBEDTLS_LIB_TLS is not set CONFIG_ECDSA=y CONFIG_ECDSA_VERIFY=y CONFIG_TPM=y |