aboutsummaryrefslogtreecommitdiff
path: root/common/spl/Kconfig
diff options
context:
space:
mode:
authorAdam Ford2019-08-24 13:50:34 -0500
committerTom Rini2019-08-26 11:46:29 -0400
commita074667d52031b1074bc23ca59bf0b73c13ccf7c (patch)
tree9f30c50aa29e5c4f1a0a25f7b04e3de98ddb09e6 /common/spl/Kconfig
parent055c2a78b70dd714dee588ebd7b335249a670d22 (diff)
Kconfig: Varios: Fix more SPL, TPL dependencies
Several options are presenting themselves on a various boards where the options are clearly not used. (ie, SPL/TPL options when SPL or TPL are not defined) This patch is not attempting to be a complete list of items, but more like low hanging fruit. In some instances, I wasn't sure of DM was required, so I simply made them SPL or TPL. This patch attempts to reduce some of the menuconfig noise by defining dependencies so they don't appear when not used. Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r--common/spl/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index 94dcdff806e..e48419825e9 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -435,6 +435,7 @@ config SPL_HASH_SUPPORT
config TPL_HASH_SUPPORT
bool "Support hashing drivers in TPL"
+ depends on TPL
select SHA1
select SHA256
help