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-w32-713121346059feadedf61b0e161173657ade6ea8.tar.gz busybox-w32-713121346059feadedf61b0e161173657ade6ea8.tar.bz2 busybox-w32-713121346059feadedf61b0e161173657ade6ea8.zip |
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' | |||
9 | bool 'free' CONFIG_FREE | 9 | bool 'free' CONFIG_FREE |
10 | bool 'kill' CONFIG_KILL | 10 | bool 'kill' CONFIG_KILL |
11 | bool 'killall' CONFIG_KILLALL | 11 | bool 'killall' CONFIG_KILLALL |
12 | if [ "$CONFIG_KILLALL" = "y" ] ; then | 12 | if [ "$CONFIG_KILLALL" = "y" -a "$CONFIG_KILL" = "n" ] ; then |
13 | define_bool CONFIG_KILL y | 13 | define_bool CONFIG_KILL y |
14 | fi | 14 | fi |
15 | bool 'pidof' CONFIG_PIDOF | 15 | bool 'pidof' CONFIG_PIDOF |
16 | bool 'ps' CONFIG_PS | 16 | bool 'ps' CONFIG_PS |
17 | if [ "$CONFIG_PS" = "y" ] ; then | ||
18 | bool ' Use devps instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH | ||
19 | fi | ||
17 | bool 'renice' CONFIG_RENICE | 20 | bool 'renice' CONFIG_RENICE |
18 | bool 'uptime' CONFIG_UPTIME | 21 | bool 'uptime' CONFIG_UPTIME |
19 | endmenu | 22 | endmenu |