From: Zong Li Date: Wed, 16 Nov 2022 07:08:39 +0000 (+0000) Subject: riscv: use imply instead of select for SPL_SEPARATE_BSS X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=57b9900cd59ad492f74390515901788459f1e8aa;p=u-boot.git 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 Reviewed-by: Rick Chen Reviewed-by: Bin Meng --- diff --git a/arch/Kconfig b/arch/Kconfig index ae39716697..102956d24c 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