From a83f635fb2a069c91693ebd15f336fa04e1b7204 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 26 Nov 2013 15:59:51 +0100 Subject: [PATCH] common Kconfig: disable unused options for SHELL_NONE Let commandline editing and long help depend on !SHELL_NONE. Signed-off-by: Sascha Hauer --- common/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/Kconfig b/common/Kconfig index f47602ec6..623372b62 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -285,6 +285,7 @@ config SIMPLE_READLINE config LONGHELP bool + depends on !SHELL_NONE prompt "Enable long help texts" config CBSIZE @@ -365,6 +366,7 @@ config HUSH_GETOPT This enables a getopt function builtin to hush. config CMDLINE_EDITING + depends on !SHELL_NONE bool prompt "Enable command line editing"