]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Kconfig: Rename SPL_MD5_SUPPORT to SPL_MD5
authorSimon Glass <sjg@chromium.org>
Wed, 14 Jul 2021 22:05:33 +0000 (17:05 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 16 Jul 2021 16:58:55 +0000 (12:58 -0400)
Drop the _SUPPORT suffix so we can use CONFIG_IS_ENABLED() with this
option.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
common/spl/Kconfig
include/image.h

index 896526aec6c6bd9bd82341fe51dbdf2e76c6cda8..2df3e5d8690460494d8cf0d362c2534f383d7f50 100644 (file)
@@ -417,7 +417,7 @@ config SPL_CRC32
          for detected accidental image corruption. For secure applications you
          should consider SHA1 or SHA256.
 
-config SPL_MD5_SUPPORT
+config SPL_MD5
        bool "Support MD5"
        depends on SPL_FIT
        help
index e2037d31597da975fa10465b8c04e4a268753ecc..124448f9e4fad34706ce59b257d000b605e59ab0 100644 (file)
@@ -65,7 +65,7 @@ struct fdt_region;
 #  ifdef CONFIG_SPL_CRC32
 #   define IMAGE_ENABLE_CRC32  1
 #  endif
-#  ifdef CONFIG_SPL_MD5_SUPPORT
+#  ifdef CONFIG_SPL_MD5
 #   define IMAGE_ENABLE_MD5    1
 #  endif
 #  ifdef CONFIG_SPL_FIT_SHA1