9
0
Fork 0

ARM: i.MX: Add HABv3 Kconfig variables

For signing i.MX images with HABv3 we need several certificates. Add
their pathes to Kconfig variables to make them available to the build
system.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2016-01-26 12:02:52 +01:00
parent b5eb8b90fe
commit 341d550c50
1 changed files with 22 additions and 0 deletions

View File

@ -735,6 +735,28 @@ config HABV4_IMG_CRT_PEM
endif
config HABV3
tristate "HABv3 support"
depends on ARCH_IMX25
help
High Assurance Boot, as found on i.MX25.
if HABV3
config HABV3_SRK_PEM
string "Path to SRK Certificate (PEM)"
default "../crts/SRK1_sha256_2048_65537_v3_ca_x509_crt.pem"
config HABV3_CSF_CRT_DER
string "Path to CSF certificate"
default "../crts/CSF1_1_sha256_2048_65537_v3_ca_crt.der"
config HABV3_IMG_CRT_DER
string "Path to IMG certificate"
default "../crts/IMG1_1_sha256_2048_65537_v3_usr_crt.der"
endif
endmenu
endif