summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/global/build-behave.in21
1 files changed, 18 insertions, 3 deletions
diff --git a/config/global/build-behave.in b/config/global/build-behave.in
index afd54e2..ca43a09 100644
--- a/config/global/build-behave.in
+++ b/config/global/build-behave.in
@@ -89,10 +89,25 @@ config CONFIG_SHELL_BASH
See help for CONFIG_SHELL_SH, above, for more explanations.
+config CONFIG_SHELL_CUSTOM
+ bool
+ prompt "custom shell"
+ help
+ Enter full path to the custom shell below.
+
+ See help for CONFIG_SHELL_SH, above, for more explanations.
+
+config CONFIG_SHELL_CUSTOM_PATH
+ string
+ prompt "Path to custom shell"
+ depends on CONFIG_SHELL_CUSTOM
+ default "/bin/sh"
+
endchoice
config CONFIG_SHELL
string
- default "sh" if CONFIG_SHELL_SH
- default "ash" if CONFIG_SHELL_ASH
- default "bash" if CONFIG_SHELL_BASH
+ default "sh" if CONFIG_SHELL_SH
+ default "ash" if CONFIG_SHELL_ASH
+ default "bash" if CONFIG_SHELL_BASH
+ default "custom" if CONFIG_SHELL_CUSTOM