mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 22:05:40 +00:00

Chain of trust(CoT) is enabled on NXP SoC in two ways: - Using MbedTLS, parsing X509 Certificates. - Using NXP internal method parsing CSF header Signed-off-by: Ruchika Gupta <ruchika.gupta@nxp.com> Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com> Change-Id: I78fb28516dfcfa667bebf8a1951ffb24bcab8de4
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
/*
|
|
* Copyright 2016-2020 NXP
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
---------------------------------------------------
|
|
# Specify the platform. [Mandatory]
|
|
# Choose Platform -
|
|
# TRUST 3.0: LS2085
|
|
# TRUST 3.1: LS2088, LS1088
|
|
PLATFORM=LS2088
|
|
---------------------------------------------------
|
|
# Specify the Key Information.
|
|
# PUB_KEY [Mandatory] Comma Separated List
|
|
# Usage: <srk1.pub> <srk2.pub> .....
|
|
PUB_KEY=srk.pub
|
|
# KEY_SELECT [Mandatory]
|
|
# USAGE (for TRUST 3.x): (between 1 to 8)
|
|
KEY_SELECT=1
|
|
# PRI_KEY [Mandatory] Single Key Used for Signing
|
|
# USAGE: <srk.pri>
|
|
PRI_KEY=srk.pri
|
|
---------------------------------------------------
|
|
# Specify OEM AND FSL ID to be populated in header. [Optional]
|
|
# e.g FSL_UID_0=11111111
|
|
FSL_UID_0=
|
|
FSL_UID_1=
|
|
OEM_UID_0=
|
|
OEM_UID_1=
|
|
OEM_UID_2=
|
|
OEM_UID_3=
|
|
OEM_UID_4=
|
|
---------------------------------------------------
|
|
# Specify The Flags. (0 or 1) - [Optional]
|
|
MP_FLAG=0
|
|
ISS_FLAG=1
|
|
LW_FLAG=0
|
|
---------------------------------------------------
|
|
# Specify VERBOSE as 1, if you want to Display Header Information [Optional]
|
|
VERBOSE=1
|
|
---------------------------------------------------
|