Simon Glass | 31b24b4 | 2020-09-10 20:21:27 -0600 | [diff] [blame] | 1 | menu "Tools options" |
| 2 | |
| 3 | config MKIMAGE_DTC_PATH |
| 4 | string "Path to dtc binary for use within mkimage" |
| 5 | default "dtc" |
| 6 | help |
| 7 | The mkimage host tool will, in order to generate FIT images make |
| 8 | calls to the dtc application in order to create the output. In |
| 9 | some cases the system dtc may not support all required features |
| 10 | and the path to a different version should be given here. |
| 11 | |
Alexandru Gagniuc | 9a5bfc1 | 2021-07-14 17:05:47 -0500 | [diff] [blame] | 12 | config TOOLS_LIBCRYPTO |
| 13 | bool "Use OpenSSL's libcrypto library for host tools" |
| 14 | default y |
| 15 | help |
| 16 | Cryptographic signature, verification, and encryption of images is |
| 17 | provided by host tools using OpenSSL's libcrypto. Select 'n' here if |
| 18 | you wish to build host tools without OpenSSL. mkimage will not have |
| 19 | the ability to sign images. |
| 20 | This selection does not affect target features, such as runtime FIT |
| 21 | signature verification. |
| 22 | |
Simon Glass | f16dc6c | 2021-09-25 19:43:16 -0600 | [diff] [blame] | 23 | config TOOLS_FIT |
| 24 | def_bool y |
| 25 | help |
| 26 | Enable FIT support in the tools builds. |
| 27 | |
| 28 | config TOOLS_FIT_FULL_CHECK |
| 29 | def_bool y |
| 30 | help |
| 31 | Do a full check of the FIT before using it in the tools builds |
| 32 | |
| 33 | config TOOLS_FIT_PRINT |
| 34 | def_bool y |
| 35 | help |
| 36 | Print the content of the FIT verbosely in the tools builds |
| 37 | |
| 38 | config TOOLS_FIT_SIGNATURE |
| 39 | def_bool y |
| 40 | help |
| 41 | Enable signature verification of FIT uImages in the tools builds |
| 42 | |
| 43 | config TOOLS_FIT_SIGNATURE_MAX_SIZE |
| 44 | hex |
| 45 | depends on TOOLS_FIT_SIGNATURE |
| 46 | default 0x10000000 |
| 47 | |
Simon Glass | 383dd57 | 2021-09-25 19:43:18 -0600 | [diff] [blame^] | 48 | config TOOLS_MD5 |
| 49 | def_bool y |
| 50 | help |
| 51 | Enable MD5 support in the tools builds |
| 52 | |
| 53 | config TOOLS_SHA1 |
| 54 | def_bool y |
| 55 | help |
| 56 | Enable SHA1 support in the tools builds |
| 57 | |
| 58 | config TOOLS_SHA256 |
| 59 | def_bool y |
| 60 | help |
| 61 | Enable SHA256 support in the tools builds |
| 62 | |
| 63 | config TOOLS_SHA384 |
| 64 | def_bool y |
| 65 | help |
| 66 | Enable SHA384 support in the tools builds |
| 67 | |
| 68 | config TOOLS_SHA512 |
| 69 | def_bool y |
| 70 | help |
| 71 | Enable SHA512 support in the tools builds |
| 72 | |
Simon Glass | 31b24b4 | 2020-09-10 20:21:27 -0600 | [diff] [blame] | 73 | endmenu |