diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-10 09:53:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-10 09:53:23 +0000 |
commit | 713121346059feadedf61b0e161173657ade6ea8 (patch) | |
tree | 8c4ceeaf57eb9fd07ee8b19173ef7b023ac2de43 /procps | |
parent | df23302cb5d2c8cdc570b63e084a3f780da6e1f1 (diff) | |
download | busybox-713121346059feadedf61b0e161173657ade6ea8.tar.gz |
config.in features patch from Giulio Orsero <giulioo@pobox.com>
with some minor edits from me
Diffstat (limited to 'procps')
-rw-r--r-- | procps/config.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/procps/config.in b/procps/config.in index c1ef61e8f..94d76b606 100644 --- a/procps/config.in +++ b/procps/config.in @@ -9,11 +9,14 @@ comment 'Process Utilities' bool 'free' CONFIG_FREE bool 'kill' CONFIG_KILL bool 'killall' CONFIG_KILLALL -if [ "$CONFIG_KILLALL" = "y" ] ; then - define_bool CONFIG_KILL y +if [ "$CONFIG_KILLALL" = "y" -a "$CONFIG_KILL" = "n" ] ; then + define_bool CONFIG_KILL y fi bool 'pidof' CONFIG_PIDOF bool 'ps' CONFIG_PS +if [ "$CONFIG_PS" = "y" ] ; then + bool ' Use devps instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH +fi bool 'renice' CONFIG_RENICE bool 'uptime' CONFIG_UPTIME endmenu |