mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-07 21:33:54 +00:00
refactor(mbedtls): rename default mbedtls confs
Change the name of these confs to be version agnostic, we will later use these configs to enforce the mbedtls minimum version Change-Id: I1f665c2471877ecc833270c511749ff845046f10 Signed-off-by: Ryan Everett <ryan.everett@arm.com>
This commit is contained in:
parent
ae952c1e51
commit
640ba6343b
5 changed files with 5 additions and 5 deletions
|
@ -25,9 +25,9 @@ endif
|
|||
|
||||
# Specify mbed TLS configuration file
|
||||
ifeq (${PSA_CRYPTO},1)
|
||||
MBEDTLS_CONFIG_FILE ?= "<drivers/auth/mbedtls/psa_mbedtls_config.h>"
|
||||
MBEDTLS_CONFIG_FILE ?= "<drivers/auth/mbedtls/default_psa_mbedtls_config.h>"
|
||||
else
|
||||
MBEDTLS_CONFIG_FILE ?= "<drivers/auth/mbedtls/mbedtls_config-3.h>"
|
||||
MBEDTLS_CONFIG_FILE ?= "<drivers/auth/mbedtls/default_mbedtls_config.h>"
|
||||
endif
|
||||
|
||||
$(eval $(call add_define,MBEDTLS_CONFIG_FILE))
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef PSA_MBEDTLS_CONFIG_H
|
||||
#define PSA_MBEDTLS_CONFIG_H
|
||||
|
||||
#include "mbedtls_config-3.h"
|
||||
#include "default_mbedtls_config.h"
|
||||
|
||||
#define MBEDTLS_PSA_CRYPTO_C
|
||||
#define MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS
|
|
@ -8,7 +8,7 @@
|
|||
#define PLAT_TC_MBEDTLS_CONFIG_H
|
||||
|
||||
#include <export/lib/utils_def_exp.h>
|
||||
#include <mbedtls_config-3.h>
|
||||
#include <default_mbedtls_config.h>
|
||||
|
||||
#ifndef TF_MBEDTLS_HEAP_SIZE
|
||||
#error TF_MBEDTLS_HEAP_SIZE is not defined
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef PLAT_ARM_MBEDTLS_CONFIG_H
|
||||
#define PLAT_ARM_MBEDTLS_CONFIG_H
|
||||
|
||||
#include <mbedtls_config-3.h>
|
||||
#include <default_mbedtls_config.h>
|
||||
|
||||
/**
|
||||
* On Arm platforms, the ROTPK is always hashed using the SHA-256
|
||||
|
|
Loading…
Add table
Reference in a new issue