diff options
author | Alper Nebi Yasak | 2022-06-18 15:13:07 +0300 |
---|---|---|
committer | Simon Glass | 2022-06-28 03:09:52 +0100 |
commit | e09a8b9f1b7d16052f5b56303411bdb5388a8044 (patch) | |
tree | 9d9a66a77a074f5e4c9d56264b5c4554b888c783 | |
parent | d7f071725287a5462c57242bf04a752cd5ddfff1 (diff) |
spl: binman: Make TPL_BINMAN_SYMBOLS depend on TPL_FRAMEWORK
TPL_BINMAN_SYMBOLS depends on SPL_FRAMEWORK. The code this enables is
compiled by checking CONFIG_$(SPL_TPL_)FRAMEWORK, so it should depend on
TPL_FRAMEWORK instead (which in turn depends on SPL_FRAMEWORK). This was
most likely a typo due to copy-pasting the config's SPL version, fix it.
Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
-rw-r--r-- | common/spl/Kconfig.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig.tpl b/common/spl/Kconfig.tpl index 9a0e719cf94..834cb6b6dd8 100644 --- a/common/spl/Kconfig.tpl +++ b/common/spl/Kconfig.tpl @@ -10,7 +10,7 @@ config TPL_SIZE_LIMIT config TPL_BINMAN_SYMBOLS bool "Declare binman symbols in TPL" - depends on SPL_FRAMEWORK && BINMAN + depends on TPL_FRAMEWORK && BINMAN default y help This enables use of symbols in TPL which refer to U-Boot, enabling TPL |