aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-01-26 18:31:51 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-01-26 18:31:51 +0100
commit786c9dc0c1351cea34e71a91c6bf34a3c62b19d4 (patch)
tree69c9f3576eb24b385a7af271d43d6f6b86859f14 /shell
parent9967c9949e0436879354e76c2847d697c309984c (diff)
downloadbusybox-786c9dc0c1351cea34e71a91c6bf34a3c62b19d4.tar.gz
sh: fix FEATURE_SH_STANDALONE help text: it does not enable NOFORK
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/Config.src22
1 files changed, 5 insertions, 17 deletions
diff --git a/shell/Config.src b/shell/Config.src
index 3545f05dd..6a7e12aa7 100644
--- a/shell/Config.src
+++ b/shell/Config.src
@@ -121,23 +121,11 @@ config FEATURE_SH_STANDALONE
for use as a rescue shell, in the event that you screw up your system.
This is implemented by re-execing /proc/self/exe (typically)
- with right parameters. Some selected applets ("NOFORK" applets)
- can even be executed without creating new process.
- Instead, busybox will call <applet>_main() internally.
-
- However, this causes problems in chroot jails without mounted /proc
- and with ps/top (command name can be shown as 'exe' for applets
- started this way).
-# untrue?
-# Note that this will *also* cause applets to take precedence
-# over shell builtins of the same name. So turning this on will
-# eliminate any performance gained by turning on the builtin "echo"
-# and "test" commands in ash.
-# untrue?
-# Note that when using this option, the shell will attempt to directly
-# run '/bin/busybox'. If you do not have the busybox binary sitting in
-# that exact location with that exact name, this option will not work at
-# all.
+ with right parameters.
+
+ However, there are drawbacks: it is problematic in chroot jails without
+ mounted /proc, and ps/top may show command name as 'exe' for applets
+ started this way.
config FEATURE_SH_NOFORK
bool "Run 'nofork' applets directly"