diff options
author | Zong Li <zong.li@sifive.com> | 2022-11-16 07:08:39 +0000 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2022-12-08 15:50:22 +0800 |
commit | 57b9900cd59ad492f74390515901788459f1e8aa (patch) | |
tree | 943f688a6427d51792346d6d1e33c9c2e8944e76 | |
parent | ac14155a2a73b7f517ef356c1bf823b9f0eaf88d (diff) | |
download | u-boot-57b9900cd59ad492f74390515901788459f1e8aa.zip u-boot-57b9900cd59ad492f74390515901788459f1e8aa.tar.gz u-boot-57b9900cd59ad492f74390515901788459f1e8aa.tar.bz2 |
riscv: use imply instead of select for SPL_SEPARATE_BSS
Use imply instead of select, then it can still be disabled by
board-specific defconfig, or be set to n manually.
Signed-off-by: Zong Li <zong.li@sifive.com>
Reviewed-by: Rick Chen <rick@andestech.com>
Reviewed-by: Bin Meng <bmeng@tinylab.org>
-rw-r--r-- | arch/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index ae39716..102956d 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -111,7 +111,7 @@ config RISCV select SUPPORT_OF_CONTROL select OF_CONTROL select DM - select SPL_SEPARATE_BSS if SPL + imply SPL_SEPARATE_BSS if SPL imply DM_SERIAL imply DM_ETH imply DM_EVENT |