summaryrefslogtreecommitdiff
path: root/common/Kconfig.boot
diff options
context:
space:
mode:
authorAlexandru Gagniuc <mr.nuke.me@gmail.com>2021-09-03 03:54:21 +0300
committerTom Rini <trini@konsulko.com>2021-09-08 23:12:09 +0300
commit92055e138f2873034e2dfd7e1308e30c9bbef3b1 (patch)
treeabd5487ecccb37a16bdf8f0c642644279448e6bd /common/Kconfig.boot
parentfe54aeaa4acbb41880b05acef9ef949e62d299dd (diff)
downloadu-boot-92055e138f2873034e2dfd7e1308e30c9bbef3b1.tar.xz
image: Drop if/elseif hash selection in calculate_hash()
calculate_hash() would try to select the appropriate hashing function by a if/elseif contruct. But that is exactly why hash_lookup_algo() exists, so use it instead. This does mean that we now have to 'select HASH' to make sure we get the hash_lookup_algo() symbol. However, the change makes sense because even basic FITs will have to deal with "hash" nodes. My only concern is that the 'select SPL_HASH' might cause some platform to grow above its SPL size allowance Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> [trini: Make FSL_CAAM be implied only on ARM && SPL] Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/Kconfig.boot')
-rw-r--r--common/Kconfig.boot2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/Kconfig.boot b/common/Kconfig.boot
index 1f365d4a81..902a5b8fbe 100644
--- a/common/Kconfig.boot
+++ b/common/Kconfig.boot
@@ -11,6 +11,7 @@ config ANDROID_BOOT_IMAGE
config FIT
bool "Support Flattened Image Tree"
+ select HASH
select MD5
select SHA1
imply SHA256
@@ -134,6 +135,7 @@ if SPL
config SPL_FIT
bool "Support Flattened Image Tree within SPL"
depends on SPL
+ select SPL_HASH
select SPL_OF_LIBFDT
config SPL_FIT_PRINT