diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2009-04-28 14:41:16 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2009-04-28 14:50:56 +1000 |
commit | f12c99c0e44be0587faa2371af386c7f2d9e72f7 (patch) | |
tree | 068d2f66a30d7179f0a2c7533739477123b7809e /shell | |
parent | c3a5ad18b81f9794f4d1ecc7a4772c9ef4a2b1bf (diff) | |
download | busybox-w32-f12c99c0e44be0587faa2371af386c7f2d9e72f7.tar.gz busybox-w32-f12c99c0e44be0587faa2371af386c7f2d9e72f7.tar.bz2 busybox-w32-f12c99c0e44be0587faa2371af386c7f2d9e72f7.zip |
Config.in: comment out programs/features that will not get supported anytime soon
Diffstat (limited to 'shell')
-rw-r--r-- | shell/Config.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/shell/Config.in b/shell/Config.in index 0689b4ec2..beae69256 100644 --- a/shell/Config.in +++ b/shell/Config.in | |||
@@ -16,6 +16,7 @@ config FEATURE_SH_IS_ASH | |||
16 | select ASH | 16 | select ASH |
17 | bool "ash" | 17 | bool "ash" |
18 | 18 | ||
19 | if !MINGW32 | ||
19 | config FEATURE_SH_IS_HUSH | 20 | config FEATURE_SH_IS_HUSH |
20 | select HUSH | 21 | select HUSH |
21 | bool "hush" | 22 | bool "hush" |
@@ -27,6 +28,7 @@ config FEATURE_SH_IS_LASH | |||
27 | config FEATURE_SH_IS_MSH | 28 | config FEATURE_SH_IS_MSH |
28 | select MSH | 29 | select MSH |
29 | bool "msh" | 30 | bool "msh" |
31 | endif | ||
30 | 32 | ||
31 | config FEATURE_SH_IS_NONE | 33 | config FEATURE_SH_IS_NONE |
32 | bool "none" | 34 | bool "none" |
@@ -50,7 +52,7 @@ comment "Ash Shell Options" | |||
50 | config ASH_JOB_CONTROL | 52 | config ASH_JOB_CONTROL |
51 | bool "Job control" | 53 | bool "Job control" |
52 | default y | 54 | default y |
53 | depends on ASH | 55 | depends on ASH && !MINGW32 |
54 | help | 56 | help |
55 | Enable job control in the ash shell. | 57 | Enable job control in the ash shell. |
56 | 58 | ||
@@ -129,7 +131,7 @@ config ASH_CMDCMD | |||
129 | config ASH_MAIL | 131 | config ASH_MAIL |
130 | bool "Check for new mail on interactive shells" | 132 | bool "Check for new mail on interactive shells" |
131 | default y | 133 | default y |
132 | depends on ASH | 134 | depends on ASH && !MINGW32 |
133 | help | 135 | help |
134 | Enable "check for new mail" in the ash shell. | 136 | Enable "check for new mail" in the ash shell. |
135 | 137 | ||
@@ -163,6 +165,7 @@ config ASH_EXPAND_PRMT | |||
163 | config HUSH | 165 | config HUSH |
164 | bool "hush" | 166 | bool "hush" |
165 | default n | 167 | default n |
168 | depends on !MINGW32 | ||
166 | select TRUE | 169 | select TRUE |
167 | select FALSE | 170 | select FALSE |
168 | select TEST | 171 | select TEST |
@@ -228,6 +231,7 @@ config HUSH_LOOPS | |||
228 | config LASH | 231 | config LASH |
229 | bool "lash" | 232 | bool "lash" |
230 | default n | 233 | default n |
234 | depends on !MINGW32 | ||
231 | select TRUE | 235 | select TRUE |
232 | select FALSE | 236 | select FALSE |
233 | select TEST | 237 | select TEST |
@@ -243,6 +247,7 @@ config LASH | |||
243 | config MSH | 247 | config MSH |
244 | bool "msh" | 248 | bool "msh" |
245 | default n | 249 | default n |
250 | depends on !MINGW32 | ||
246 | select TRUE | 251 | select TRUE |
247 | select FALSE | 252 | select FALSE |
248 | select TEST | 253 | select TEST |
@@ -300,6 +305,7 @@ config FEATURE_SH_STANDALONE | |||
300 | config CTTYHACK | 305 | config CTTYHACK |
301 | bool "cttyhack" | 306 | bool "cttyhack" |
302 | default n | 307 | default n |
308 | depends on !MINGW32 | ||
303 | help | 309 | help |
304 | One common problem reported on the mailing list is "can't access tty; | 310 | One common problem reported on the mailing list is "can't access tty; |
305 | job control turned off" error message which typically appears when | 311 | job control turned off" error message which typically appears when |