[PATCH] common: Kconfig: SYS_CONSOLE_ENV_OVERWRITE depends on SYS_CONSOLE_IS_IN_ENV

From: Ying Sun sunying@nj.iscas.ac.cn
CONFIG_SYS_CONSOLE_ENV_OVERWRITE is implemented in common/console.c when "#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)" is met.
It is recommended to add dependency constraints to its definition.
Suggested-by: Yanjie Ren renyanjie01@gmail.com Signed-off-by: Ying Sun sunying@nj.iscas.ac.cn --- common/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/common/Kconfig b/common/Kconfig index bbabadb35e..42baca20a6 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -256,6 +256,7 @@ config SYS_CONSOLE_OVERWRITE_ROUTINE
config SYS_CONSOLE_ENV_OVERWRITE bool "Update environment variables during console init" + depends on SYS_CONSOLE_IS_IN_ENV help The console environment variables (stdout, stdin, stderr) can be used to determine the correct console devices on start-up. This

On Sun, Jun 25, 2023 at 04:52:07PM +0800, sunying@nj.iscas.ac.cn wrote:
From: Ying Sun sunying@nj.iscas.ac.cn
CONFIG_SYS_CONSOLE_ENV_OVERWRITE is implemented in common/console.c when "#if CONFIG_IS_ENABLED(SYS_CONSOLE_IS_IN_ENV)" is met.
It is recommended to add dependency constraints to its definition.
Suggested-by: Yanjie Ren renyanjie01@gmail.com Signed-off-by: Ying Sun sunying@nj.iscas.ac.cn
Applied to u-boot/next, thanks!
participants (2)
-
sunying@nj.iscas.ac.cn
-
Tom Rini