summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-04-01 15:16:27 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-04-11 15:57:51 +0200
commit3c702a58c7db0c3a1d5355643205b97c430a1017 (patch)
treeb38b858bc7de6bd805bdd0e7b06aa8146ada87c8 /common/Kconfig
parent71a4899e18295995e0ea13438b4efe9b8ac16d5a (diff)
downloadbarebox-3c702a58c7db0c3a1d5355643205b97c430a1017.tar.gz
barebox-3c702a58c7db0c3a1d5355643205b97c430a1017.tar.xz
make command support optional
In a noninveractive environment we do not need commands. So make them optional. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Kconfig')
-rw-r--r--common/Kconfig2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index b493a31a4e..83975eeee9 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -223,6 +223,7 @@ choice
config SHELL_HUSH
bool "hush parser"
select ENVIRONMENT_VARIABLES
+ select COMMAND_SUPPORT
help
Enable hush support. This is the most advanced shell available
for barebox.
@@ -230,6 +231,7 @@ choice
config SHELL_SIMPLE
bool "Simple parser"
select ENVIRONMENT_VARIABLES
+ select COMMAND_SUPPORT
help
simple shell. No if/then, no return values from commands, no loops
endchoice