mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
Merge "defaults.mk: default KEY_SIZE to 2048 in case of RSA algorithm" into integration
This commit is contained in:
commit
8c00bccebe
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue