Message ID | 20240816214436.1877263-29-raymond.mao@linaro.org |
---|---|
State | Accepted |
Commit | e65dcfe6bb7b5a24e68b132f5a2da82cf088017a |
Delegated to: | Tom Rini |
Headers | show |
Series | Integrate MbedTLS v3.6 LTS with U-Boot | expand |
On Sat, 17 Aug 2024 at 00:55, Raymond Mao <raymond.mao@linaro.org> wrote: > > Enable MbedTLS as default setting for qemu arm64 and sandbox. > > Signed-off-by: Raymond Mao <raymond.mao@linaro.org> > --- > Changes in v2 > - None. > Changes in v3 > - None. > Changes in v4 > - None. > Changes in v5 > - Remove unused config MBEDTLS_LIB_TLS. > - Remove EFI_SECURE_BOOT from the default config. > Changes in v6 > - Remove MBEDTLS_LIB_CRYPTO and MBEDTLS_LIB_X509. > > configs/qemu_arm64_defconfig | 1 + > configs/sandbox_defconfig | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/configs/qemu_arm64_defconfig b/configs/qemu_arm64_defconfig > index 7e166f43908..2a7885d2a68 100644 > --- a/configs/qemu_arm64_defconfig > +++ b/configs/qemu_arm64_defconfig > @@ -67,4 +67,5 @@ CONFIG_TPM2_MMIO=y > CONFIG_USB_EHCI_HCD=y > CONFIG_USB_EHCI_PCI=y > CONFIG_SEMIHOSTING=y > +CONFIG_MBEDTLS_LIB=y > CONFIG_TPM=y > diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig > index 484f9e1bf8d..2ca2e66d1de 100644 > --- a/configs/sandbox_defconfig > +++ b/configs/sandbox_defconfig > @@ -344,6 +344,7 @@ CONFIG_FS_CBFS=y > CONFIG_FS_CRAMFS=y > CONFIG_ADDR_MAP=y > CONFIG_CMD_DHRYSTONE=y > +CONFIG_MBEDTLS_LIB=y > CONFIG_ECDSA=y > CONFIG_ECDSA_VERIFY=y > CONFIG_TPM=y > -- > 2.25.1 > Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
diff --git a/configs/qemu_arm64_defconfig b/configs/qemu_arm64_defconfig index 7e166f43908..2a7885d2a68 100644 --- a/configs/qemu_arm64_defconfig +++ b/configs/qemu_arm64_defconfig @@ -67,4 +67,5 @@ CONFIG_TPM2_MMIO=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_PCI=y CONFIG_SEMIHOSTING=y +CONFIG_MBEDTLS_LIB=y CONFIG_TPM=y diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig index 484f9e1bf8d..2ca2e66d1de 100644 --- a/configs/sandbox_defconfig +++ b/configs/sandbox_defconfig @@ -344,6 +344,7 @@ CONFIG_FS_CBFS=y CONFIG_FS_CRAMFS=y CONFIG_ADDR_MAP=y CONFIG_CMD_DHRYSTONE=y +CONFIG_MBEDTLS_LIB=y CONFIG_ECDSA=y CONFIG_ECDSA_VERIFY=y CONFIG_TPM=y
Enable MbedTLS as default setting for qemu arm64 and sandbox. Signed-off-by: Raymond Mao <raymond.mao@linaro.org> --- Changes in v2 - None. Changes in v3 - None. Changes in v4 - None. Changes in v5 - Remove unused config MBEDTLS_LIB_TLS. - Remove EFI_SECURE_BOOT from the default config. Changes in v6 - Remove MBEDTLS_LIB_CRYPTO and MBEDTLS_LIB_X509. configs/qemu_arm64_defconfig | 1 + configs/sandbox_defconfig | 1 + 2 files changed, 2 insertions(+)