From: Liya Huang <1425075...@qq.com> When I was using STM32 board, this option appeared in menuconfig and caused me trouble. I observed that the root cause was that the option was not included in the endif, but when I tried to fix it, an error occurred. I didn't find a solution. Only deponds can be used for hiding
Signed-off-by: Liya Huang <1425075...@qq.com> --- Changes in v1: - Replace depends on ARCH_IMX8 with depends on TARGET_CAPRICORN as suggested board/siemens/common/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/board/siemens/common/Kconfig b/board/siemens/common/Kconfig index 4ae12b1c973..3808257cd07 100644 --- a/board/siemens/common/Kconfig +++ b/board/siemens/common/Kconfig @@ -3,4 +3,5 @@ config FACTORYSET config DDR_SI_TEST bool "DDR signal integrity test implementations" + depends on TARGET_CAPRICORN default y -- 2.25.1