diff options
author | Ruchika Gupta | 2015-01-23 16:01:51 +0530 |
---|---|---|
committer | Simon Glass | 2015-01-29 17:09:58 -0700 |
commit | c4beb22fcd8cf57569a8045c8e04cea0dbbfd763 (patch) | |
tree | ea0c036e5f7bea74b8034ae02b2ab50c435e085b /Kconfig | |
parent | fc2f4246b4b3b750e8c5aa08440ec5e1c952088e (diff) |
FIT: Modify option FIT_SIGNATURE in Kconfig
For FIT signature based approach to work, RSA library needs to be selected.
The FIT_SIGNATURE option in Kconfig is modified to automatically select RSA.
Selecting RSA compiles the RSA library required for image verification.
Signed-off-by: Ruchika Gupta <ruchika.gupta@freescale.com>
CC: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -116,8 +116,9 @@ config FIT_VERBOSE depends on FIT config FIT_SIGNATURE - bool "Enabel signature verification of FIT uImages" + bool "Enable signature verification of FIT uImages" depends on FIT + select RSA help This option enables signature verification of FIT uImages, using a hash signed and verified using RSA. |