Kconfig 829 B

1234567891011121314151617181920212223
  1. menu "Tools options"
  2. config MKIMAGE_DTC_PATH
  3. string "Path to dtc binary for use within mkimage"
  4. default "dtc"
  5. help
  6. The mkimage host tool will, in order to generate FIT images make
  7. calls to the dtc application in order to create the output. In
  8. some cases the system dtc may not support all required features
  9. and the path to a different version should be given here.
  10. config TOOLS_LIBCRYPTO
  11. bool "Use OpenSSL's libcrypto library for host tools"
  12. default y
  13. help
  14. Cryptographic signature, verification, and encryption of images is
  15. provided by host tools using OpenSSL's libcrypto. Select 'n' here if
  16. you wish to build host tools without OpenSSL. mkimage will not have
  17. the ability to sign images.
  18. This selection does not affect target features, such as runtime FIT
  19. signature verification.
  20. endmenu