mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 13:43:28 +00:00
Kconfig: Add dependency on HASH to verified boot
Building with verified boot support requires hash, add that dependency here. Otherwise the following build error will come out without crc command. LD u-boot lib/built-in.o: In function `hash_calculate': lib/rsa/rsa-checksum.c:29: undefined reference to `hash_progressive_lookup_algo' ... make[1]: *** [u-boot] Error 1 Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com> Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
ebf48500df
commit
535adee869
1 changed files with 1 additions and 0 deletions
1
Kconfig
1
Kconfig
|
@ -253,6 +253,7 @@ config FIT_SIGNATURE
|
|||
bool "Enable signature verification of FIT uImages"
|
||||
depends on DM
|
||||
select RSA
|
||||
select HASH
|
||||
help
|
||||
This option enables signature verification of FIT uImages,
|
||||
using a hash signed and verified using RSA. If
|
||||
|
|
Loading…
Reference in a new issue