Merge "defaults.mk: default KEY_SIZE to 2048 in case of RSA algorithm" into integration

This commit is contained in:
Olivier Deprez 2020-09-21 08:28:28 +00:00 committed by TrustedFirmware Code Review
commit 8c00bccebe
1 changed files with 5 additions and 0 deletions

View File

@ -157,6 +157,11 @@ HW_ASSISTED_COHERENCY := 0
# Set the default algorithm for the generation of Trusted Board Boot keys
KEY_ALG := rsa
# Set the default key size in case KEY_ALG is rsa
ifeq ($(KEY_ALG),rsa)
KEY_SIZE := 2048
endif
# Option to build TF with Measured Boot support
MEASURED_BOOT := 0