input_bl2_ch3 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright 2018-2020 NXP
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. *
  6. */
  7. ---------------------------------------------------
  8. # Specify the platform. [Mandatory]
  9. # Choose Platform -
  10. # TRUST 3.2: LX2160
  11. PLATFORM=LS2088
  12. ---------------------------------------------------
  13. # Entry Point/Image start address field in the header.[Mandatory]
  14. # (default=ADDRESS of first file specified in images)
  15. # Address can be 64 bit
  16. ENTRY_POINT=1800A000
  17. ---------------------------------------------------
  18. # Specify the Key Information.
  19. # PUB_KEY [Mandatory] Comma Separated List
  20. # Usage: <srk1.pub> <srk2.pub> .....
  21. PUB_KEY=srk.pub
  22. # KEY_SELECT [Mandatory]
  23. # USAGE (for TRUST 3.x): (between 1 to 8)
  24. KEY_SELECT=1
  25. # PRI_KEY [Mandatory] Single Key Used for Signing
  26. # USAGE: <srk.pri>
  27. PRI_KEY=srk.pri
  28. ---------------------------------------------------
  29. # Specify IMAGE, Max 8 images are possible.
  30. # DST_ADDR is required only for Non-PBL Platform. [Mandatory]
  31. # USAGE : IMAGE_NO = {IMAGE_NAME, SRC_ADDR, DST_ADDR}
  32. # Address can be 64 bit
  33. IMAGE_1={bl2.bin,1800A000,ffffffff}
  34. IMAGE_2={,,}
  35. IMAGE_3={,,}
  36. IMAGE_4={,,}
  37. IMAGE_5={,,}
  38. IMAGE_6={,,}
  39. IMAGE_7={,,}
  40. IMAGE_8={,,}
  41. ---------------------------------------------------
  42. # Specify OEM AND FSL ID to be populated in header. [Optional]
  43. # e.g FSL_UID_0=11111111
  44. FSL_UID_0=
  45. FSL_UID_1=
  46. OEM_UID_0=
  47. OEM_UID_1=
  48. OEM_UID_2=
  49. OEM_UID_3=
  50. OEM_UID_4=
  51. ---------------------------------------------------
  52. # Specify the output file names [Optional].
  53. # Default Values chosen in Tool
  54. OUTPUT_HDR_FILENAME=hdr_bl2.out
  55. IMAGE_HASH_FILENAME=
  56. RSA_SIGN_FILENAME=
  57. ---------------------------------------------------
  58. # Specify The Flags. (0 or 1) - [Optional]
  59. MP_FLAG=0
  60. ISS_FLAG=1
  61. LW_FLAG=0
  62. ---------------------------------------------------
  63. # Specify VERBOSE as 1, if you want to Display Header Information [Optional]
  64. VERBOSE=1