summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/Config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/Config.in b/shell/Config.in
index 90479013e..0689b4ec2 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -179,6 +179,7 @@ config HUSH
179config HUSH_HELP 179config HUSH_HELP
180 bool "help builtin" 180 bool "help builtin"
181 default n 181 default n
182 depends on HUSH
182 help 183 help
183 Enable help builtin in hush. Code size + ~1 kbyte. 184 Enable help builtin in hush. Code size + ~1 kbyte.
184 185
@@ -206,18 +207,21 @@ config HUSH_JOB
206config HUSH_TICK 207config HUSH_TICK
207 bool "Process substitution" 208 bool "Process substitution"
208 default n 209 default n
210 depends on HUSH
209 help 211 help
210 Enable process substitution `command` and $(command) in hush. 212 Enable process substitution `command` and $(command) in hush.
211 213
212config HUSH_IF 214config HUSH_IF
213 bool "Support if/then/elif/else/fi" 215 bool "Support if/then/elif/else/fi"
214 default n 216 default n
217 depends on HUSH
215 help 218 help
216 Enable if/then/elif/else/fi in hush. 219 Enable if/then/elif/else/fi in hush.
217 220
218config HUSH_LOOPS 221config HUSH_LOOPS
219 bool "Support for, while and until loops" 222 bool "Support for, while and until loops"
220 default n 223 default n
224 depends on HUSH
221 help 225 help
222 Enable for, while and until loops in hush. 226 Enable for, while and until loops in hush.
223 227