From 0a29a5a26b84daeb1431e5028110067e39841d1d Mon Sep 17 00:00:00 2001 From: Torsten Rasmussen Date: Mon, 18 Oct 2021 12:02:27 +0200 Subject: [PATCH] kconfig: shell: experimental settings now uses select EXPERIMENTAL With the introduction of `EXPERIMENTAL` and `WARN_EXPERIMENTAL` in Zephyr all subsys/shell settings having `[EXPERIMENTAL]` in their prompt has has been updated to include `select EXPERIMENTAL` so that developers can enable warnings when experimental features are enabled. Signed-off-by: Torsten Rasmussen --- subsys/shell/Kconfig.backends | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subsys/shell/Kconfig.backends b/subsys/shell/Kconfig.backends index 5f4b4f6cc91..1a054f6e270 100644 --- a/subsys/shell/Kconfig.backends +++ b/subsys/shell/Kconfig.backends @@ -230,7 +230,8 @@ config SHELL_TELNET_SEND_TIMEOUT in when a line buffer is not empty but did not yet meet the line feed. config SHELL_TELNET_SUPPORT_COMMAND - bool "Add support for telnet commands (IAC) [Experimental]" + bool "Add support for telnet commands (IAC) [EXPERIMENTAL]" + select EXPERIMENTAL help Current support is so limited it's not interesting to enable it. However, if proven to be needed at some point, it will be possible