diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-22 18:48:38 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-22 18:48:38 +0200 |
commit | 0fb0045aa9261be1dda49dfdfb95cbc585402a8b (patch) | |
tree | 951e3f34078b2a2e5702672472dc7ba3b1e51926 /shell | |
parent | 49117b48008e0fe36d6680c787045cb44a300f93 (diff) | |
download | busybox-w32-0fb0045aa9261be1dda49dfdfb95cbc585402a8b.tar.gz busybox-w32-0fb0045aa9261be1dda49dfdfb95cbc585402a8b.tar.bz2 busybox-w32-0fb0045aa9261be1dda49dfdfb95cbc585402a8b.zip |
config: disentangle PREFER_APPLETS from SH_STANDALONE and SH_NOFORK
On user request.
I thought enabling/disabling them all together is more consistent.
Evidently, some people do want them to be separately selectable.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/Config.src | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/Config.src b/shell/Config.src index b31e62dda..e4df35973 100644 --- a/shell/Config.src +++ b/shell/Config.src | |||
@@ -88,7 +88,7 @@ config FEATURE_SH_EXTRA_QUIET | |||
88 | config FEATURE_SH_STANDALONE | 88 | config FEATURE_SH_STANDALONE |
89 | bool "Standalone shell" | 89 | bool "Standalone shell" |
90 | default n | 90 | default n |
91 | depends on (HUSH || ASH) && FEATURE_PREFER_APPLETS | 91 | depends on (HUSH || ASH) |
92 | help | 92 | help |
93 | This option causes busybox shells to use busybox applets | 93 | This option causes busybox shells to use busybox applets |
94 | in preference to executables in the PATH whenever possible. For | 94 | in preference to executables in the PATH whenever possible. For |
@@ -121,7 +121,7 @@ config FEATURE_SH_STANDALONE | |||
121 | config FEATURE_SH_NOFORK | 121 | config FEATURE_SH_NOFORK |
122 | bool "Run 'nofork' applets directly" | 122 | bool "Run 'nofork' applets directly" |
123 | default n | 123 | default n |
124 | depends on (HUSH || ASH) && FEATURE_PREFER_APPLETS | 124 | depends on (HUSH || ASH) |
125 | help | 125 | help |
126 | This option causes busybox shells to not execute typical | 126 | This option causes busybox shells to not execute typical |
127 | fork/exec/wait sequence, but call <applet>_main directly, | 127 | fork/exec/wait sequence, but call <applet>_main directly, |