diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-28 16:48:04 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-28 16:48:04 +0000 |
commit | b81b3df1fa387fa5c6a3fe577969285858f494ce (patch) | |
tree | f681253ed7bc21ff3291ae13430db89933f83d29 /shell/Config.in | |
parent | 0937be5fa64e9dc0f2dc525225c34ab7c52f256c (diff) | |
download | busybox-w32-b81b3df1fa387fa5c6a3fe577969285858f494ce.tar.gz busybox-w32-b81b3df1fa387fa5c6a3fe577969285858f494ce.tar.bz2 busybox-w32-b81b3df1fa387fa5c6a3fe577969285858f494ce.zip |
hush: make job control and interactiveness configurable, part 1
Diffstat (limited to 'shell/Config.in')
-rw-r--r-- | shell/Config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/shell/Config.in b/shell/Config.in index 9479e3fed..81289e4fd 100644 --- a/shell/Config.in +++ b/shell/Config.in | |||
@@ -176,6 +176,15 @@ config HUSH | |||
176 | word ), arithmetic expansion, aliases, brace expansion, tilde | 176 | word ), arithmetic expansion, aliases, brace expansion, tilde |
177 | expansion, &> and >& redirection of stdout+stderr, etc. | 177 | expansion, &> and >& redirection of stdout+stderr, etc. |
178 | 178 | ||
179 | config HUSH_INTERACTIVE | ||
180 | bool "Interactive mode" | ||
181 | default y | ||
182 | depends on HUSH | ||
183 | help | ||
184 | Enable interactive mode (Ctrl-Z, Ctrl-C, command editing) | ||
185 | in the hush shell. Without this, hush reads and executes | ||
186 | stdin just like a shell script from the file. | ||
187 | |||
179 | 188 | ||
180 | config LASH | 189 | config LASH |
181 | bool "lash" | 190 | bool "lash" |