Change the config order that SH_IS_* and BASH_IS_* will be prompted after ASH and HUSH. And if CONFIG_ASH=n, SH_IS_* choice will default to SH_IS_NONE.
Signed-off-by: Kang-Che Sung <[email protected]> --- shell/Config.src | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/shell/Config.src b/shell/Config.src index 7f5f67050..794f9985a 100644 --- a/shell/Config.src +++ b/shell/Config.src @@ -5,10 +5,12 @@ menu "Shells" +INSERT choice prompt "Choose which shell is aliased to 'sh' name" - default SH_IS_ASH + default SH_IS_ASH if ASH + default SH_IS_NONE help Choose which shell you want to be executed by 'sh' alias. The ash shell is the most bash compatible and full featured one. @@ -55,10 +57,6 @@ config BASH_IS_NONE endchoice - -INSERT - - config FEATURE_SH_MATH bool "POSIX math support" default y -- 2.11.0 _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
