9
0
Fork 0

common Kconfig: Add missing depends on

CONFIG_MAXARGS is only used with the simple console support, so add
a 'depends on'. While at it, move it below the shell selection.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-11-26 14:44:25 +01:00
parent 7614ee1640
commit 915976f129
1 changed files with 6 additions and 5 deletions

View File

@ -292,11 +292,6 @@ config CBSIZE
prompt "Buffer size for input from the Console" prompt "Buffer size for input from the Console"
default 1024 default 1024
config MAXARGS
int
prompt "max. Number of arguments accepted for monitor commands"
default 16
choice choice
prompt "Select your shell" prompt "Select your shell"
@ -328,6 +323,12 @@ choice
at the end of the barebox startup process. at the end of the barebox startup process.
endchoice endchoice
config MAXARGS
int
depends on SHELL_SIMPLE
prompt "max. Number of arguments accepted for monitor commands"
default 16
config GLOB config GLOB
bool bool
prompt "hush globbing support" prompt "hush globbing support"