diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-16 19:26:38 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-16 19:26:38 +0200 |
commit | 6adf2aad38cf2f5a056f9014955807607bcb41b2 (patch) | |
tree | ca510c8d459aaf0fa56092446b01726be5e57553 /shell/hush.c | |
parent | 51ca7761a3579f3c3f7e771b39019e6e248a5171 (diff) | |
download | busybox-w32-6adf2aad38cf2f5a056f9014955807607bcb41b2.tar.gz busybox-w32-6adf2aad38cf2f5a056f9014955807607bcb41b2.tar.bz2 busybox-w32-6adf2aad38cf2f5a056f9014955807607bcb41b2.zip |
hush: move msh/lash config into hush.c, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/hush.c b/shell/hush.c index 56a3f4b14..9208ec497 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -224,6 +224,20 @@ | |||
224 | //config: This instructs hush to print commands before execution. | 224 | //config: This instructs hush to print commands before execution. |
225 | //config: Adds ~300 bytes. | 225 | //config: Adds ~300 bytes. |
226 | //config: | 226 | //config: |
227 | //config:config LASH | ||
228 | //config: bool "lash (deprecated: aliased to hush)" | ||
229 | //config: default n | ||
230 | //config: select HUSH | ||
231 | //config: help | ||
232 | //config: lash is deprecated and will be removed, please migrate to hush. | ||
233 | //config: | ||
234 | //config:config MSH | ||
235 | //config: bool "msh (deprecated: aliased to hush)" | ||
236 | //config: default n | ||
237 | //config: select HUSH | ||
238 | //config: help | ||
239 | //config: msh is deprecated and will be removed, please migrate to hush. | ||
240 | //config: | ||
227 | 241 | ||
228 | //usage:#define hush_trivial_usage NOUSAGE_STR | 242 | //usage:#define hush_trivial_usage NOUSAGE_STR |
229 | //usage:#define hush_full_usage "" | 243 | //usage:#define hush_full_usage "" |