diff options
author | Andre Przywara <andre.przywara@arm.com> | 2017-03-15 01:19:06 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-03-17 09:09:40 -0400 |
commit | aeb9c53cae09ced27ae246153dcf567ee22fb108 (patch) | |
tree | 7f520fbd0ab7d388f7afb13dc185a73e510f17fb /include/image.h | |
parent | bea79d7d3fde54932747b7592d399bbaf070385e (diff) | |
download | u-boot-aeb9c53cae09ced27ae246153dcf567ee22fb108.tar.gz |
Kconfig: define MD5 dependency for FIT support
FIT images require MD5 support to verify image checksums. So far this
was expressed by defining a CPP symbol in image.h. Since MD5 is now a
first class Kconfig citizen, express that in Kconfig instead.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/image.h')
-rw-r--r-- | include/image.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/image.h b/include/image.h index 1e686b76d3..2372518960 100644 --- a/include/image.h +++ b/include/image.h @@ -67,7 +67,6 @@ struct lmb; # endif # else # define CONFIG_CRC32 /* FIT images need CRC32 support */ -# define CONFIG_MD5 /* and MD5 */ # define CONFIG_SHA1 /* and SHA1 */ # define CONFIG_SHA256 /* and SHA256 */ # define IMAGE_ENABLE_CRC32 1 |