aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-21 09:50:55 +0200
commit72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch)
treea5cd9d8f47e909834d3dbc44f895556e68bcf18f /procps
parent75d151e31d135ebab083307ded4e9b98970baa75 (diff)
downloadbusybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz
busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.bz2
busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps')
-rw-r--r--procps/Config.src4
-rw-r--r--procps/free.c6
-rw-r--r--procps/fuser.c6
-rw-r--r--procps/iostat.c2
-rw-r--r--procps/kill.c20
-rw-r--r--procps/lsof.c4
-rw-r--r--procps/mpstat.c2
-rw-r--r--procps/nmeter.c2
-rw-r--r--procps/pgrep.c4
-rw-r--r--procps/pidof.c12
-rw-r--r--procps/pmap.c8
-rw-r--r--procps/powertop.c6
-rw-r--r--procps/ps.c16
-rw-r--r--procps/pstree.c2
-rw-r--r--procps/pwdx.c2
-rw-r--r--procps/smemcap.c4
-rw-r--r--procps/sysctl.c2
-rw-r--r--procps/top.c30
-rw-r--r--procps/uptime.c8
-rw-r--r--procps/watch.c4
20 files changed, 72 insertions, 72 deletions
diff --git a/procps/Config.src b/procps/Config.src
index 35fef2eda..515d79938 100644
--- a/procps/Config.src
+++ b/procps/Config.src
@@ -12,7 +12,7 @@ config FEATURE_SHOW_THREADS
12 default y 12 default y
13 depends on PS || TOP || PSTREE 13 depends on PS || TOP || PSTREE
14 help 14 help
15 Enables the ps -T option, showing of threads in pstree, 15 Enables the ps -T option, showing of threads in pstree,
16 and 'h' command in top. 16 and 'h' command in top.
17 17
18endmenu 18endmenu
diff --git a/procps/free.c b/procps/free.c
index 497bf1911..618664e08 100644
--- a/procps/free.c
+++ b/procps/free.c
@@ -11,9 +11,9 @@
11//config: default y 11//config: default y
12//config: select PLATFORM_LINUX #sysinfo() 12//config: select PLATFORM_LINUX #sysinfo()
13//config: help 13//config: help
14//config: free displays the total amount of free and used physical and swap 14//config: free displays the total amount of free and used physical and swap
15//config: memory in the system, as well as the buffers used by the kernel. 15//config: memory in the system, as well as the buffers used by the kernel.
16//config: The shared memory column should be ignored; it is obsolete. 16//config: The shared memory column should be ignored; it is obsolete.
17 17
18//applet:IF_FREE(APPLET(free, BB_DIR_USR_BIN, BB_SUID_DROP)) 18//applet:IF_FREE(APPLET(free, BB_DIR_USR_BIN, BB_SUID_DROP))
19 19
diff --git a/procps/fuser.c b/procps/fuser.c
index 463d8800c..2585a4203 100644
--- a/procps/fuser.c
+++ b/procps/fuser.c
@@ -10,9 +10,9 @@
10//config: bool "fuser (7 kb)" 10//config: bool "fuser (7 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: fuser lists all PIDs (Process IDs) that currently have a given 13//config: fuser lists all PIDs (Process IDs) that currently have a given
14//config: file open. fuser can also list all PIDs that have a given network 14//config: file open. fuser can also list all PIDs that have a given network
15//config: (TCP or UDP) port open. 15//config: (TCP or UDP) port open.
16 16
17//applet:IF_FUSER(APPLET(fuser, BB_DIR_USR_BIN, BB_SUID_DROP)) 17//applet:IF_FUSER(APPLET(fuser, BB_DIR_USR_BIN, BB_SUID_DROP))
18 18
diff --git a/procps/iostat.c b/procps/iostat.c
index 94a928020..608d41364 100644
--- a/procps/iostat.c
+++ b/procps/iostat.c
@@ -11,7 +11,7 @@
11//config: bool "iostat (7.4 kb)" 11//config: bool "iostat (7.4 kb)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: Report CPU and I/O statistics 14//config: Report CPU and I/O statistics
15 15
16//applet:IF_IOSTAT(APPLET(iostat, BB_DIR_BIN, BB_SUID_DROP)) 16//applet:IF_IOSTAT(APPLET(iostat, BB_DIR_BIN, BB_SUID_DROP))
17 17
diff --git a/procps/kill.c b/procps/kill.c
index 3c330e5b9..5cff24475 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -11,26 +11,26 @@
11//config: bool "kill (2.6 kb)" 11//config: bool "kill (2.6 kb)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: The command kill sends the specified signal to the specified 14//config: The command kill sends the specified signal to the specified
15//config: process or process group. If no signal is specified, the TERM 15//config: process or process group. If no signal is specified, the TERM
16//config: signal is sent. 16//config: signal is sent.
17//config: 17//config:
18//config:config KILLALL 18//config:config KILLALL
19//config: bool "killall (5.6 kb)" 19//config: bool "killall (5.6 kb)"
20//config: default y 20//config: default y
21//config: help 21//config: help
22//config: killall sends a signal to all processes running any of the 22//config: killall sends a signal to all processes running any of the
23//config: specified commands. If no signal name is specified, SIGTERM is 23//config: specified commands. If no signal name is specified, SIGTERM is
24//config: sent. 24//config: sent.
25//config: 25//config:
26//config:config KILLALL5 26//config:config KILLALL5
27//config: bool "killall5 (5.3 kb)" 27//config: bool "killall5 (5.3 kb)"
28//config: default y 28//config: default y
29//config: help 29//config: help
30//config: The SystemV killall command. killall5 sends a signal 30//config: The SystemV killall command. killall5 sends a signal
31//config: to all processes except kernel threads and the processes 31//config: to all processes except kernel threads and the processes
32//config: in its own session, so it won't kill the shell that is running 32//config: in its own session, so it won't kill the shell that is running
33//config: the script it was called from. 33//config: the script it was called from.
34 34
35//applet:IF_KILL(APPLET(kill, BB_DIR_BIN, BB_SUID_DROP)) 35//applet:IF_KILL(APPLET(kill, BB_DIR_BIN, BB_SUID_DROP))
36// APPLET_ODDNAME:name main location suid_type help 36// APPLET_ODDNAME:name main location suid_type help
diff --git a/procps/lsof.c b/procps/lsof.c
index d1e994ab9..8d3a23cc8 100644
--- a/procps/lsof.c
+++ b/procps/lsof.c
@@ -11,8 +11,8 @@
11//config: bool "lsof (3.6 kb)" 11//config: bool "lsof (3.6 kb)"
12//config: default y 12//config: default y
13//config: help 13//config: help
14//config: Show open files in the format of: 14//config: Show open files in the format of:
15//config: PID <TAB> /path/to/executable <TAB> /path/to/opened/file 15//config: PID <TAB> /path/to/executable <TAB> /path/to/opened/file
16 16
17//applet:IF_LSOF(APPLET(lsof, BB_DIR_USR_BIN, BB_SUID_DROP)) 17//applet:IF_LSOF(APPLET(lsof, BB_DIR_USR_BIN, BB_SUID_DROP))
18 18
diff --git a/procps/mpstat.c b/procps/mpstat.c
index 455cdb1b2..1eabd8e38 100644
--- a/procps/mpstat.c
+++ b/procps/mpstat.c
@@ -15,7 +15,7 @@
15//config: bool "mpstat (10 kb)" 15//config: bool "mpstat (10 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: Per-processor statistics 18//config: Per-processor statistics
19 19
20#include "libbb.h" 20#include "libbb.h"
21#include <sys/utsname.h> /* struct utsname */ 21#include <sys/utsname.h> /* struct utsname */
diff --git a/procps/nmeter.c b/procps/nmeter.c
index a7c548d98..9463f94dc 100644
--- a/procps/nmeter.c
+++ b/procps/nmeter.c
@@ -10,7 +10,7 @@
10//config: bool "nmeter (10 kb)" 10//config: bool "nmeter (10 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: Prints selected system stats continuously, one line per update. 13//config: Prints selected system stats continuously, one line per update.
14 14
15//applet:IF_NMETER(APPLET(nmeter, BB_DIR_USR_BIN, BB_SUID_DROP)) 15//applet:IF_NMETER(APPLET(nmeter, BB_DIR_USR_BIN, BB_SUID_DROP))
16 16
diff --git a/procps/pgrep.c b/procps/pgrep.c
index 335f2d226..327f6a934 100644
--- a/procps/pgrep.c
+++ b/procps/pgrep.c
@@ -10,13 +10,13 @@
10//config: bool "pgrep (6.8 kb)" 10//config: bool "pgrep (6.8 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: Look for processes by name. 13//config: Look for processes by name.
14//config: 14//config:
15//config:config PKILL 15//config:config PKILL
16//config: bool "pkill (7.6 kb)" 16//config: bool "pkill (7.6 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: Send signals to processes by name. 19//config: Send signals to processes by name.
20 20
21//applet:IF_PGREP(APPLET(pgrep, BB_DIR_USR_BIN, BB_SUID_DROP)) 21//applet:IF_PGREP(APPLET(pgrep, BB_DIR_USR_BIN, BB_SUID_DROP))
22// APPLET_ODDNAME:name main location suid_type help 22// APPLET_ODDNAME:name main location suid_type help
diff --git a/procps/pidof.c b/procps/pidof.c
index 0d08c6095..41247a02c 100644
--- a/procps/pidof.c
+++ b/procps/pidof.c
@@ -10,24 +10,24 @@
10//config: bool "pidof (6.6 kb)" 10//config: bool "pidof (6.6 kb)"
11//config: default y 11//config: default y
12//config: help 12//config: help
13//config: Pidof finds the process id's (pids) of the named programs. It prints 13//config: Pidof finds the process id's (pids) of the named programs. It prints
14//config: those id's on the standard output. 14//config: those id's on the standard output.
15//config: 15//config:
16//config:config FEATURE_PIDOF_SINGLE 16//config:config FEATURE_PIDOF_SINGLE
17//config: bool "Enable single shot (-s)" 17//config: bool "Enable single shot (-s)"
18//config: default y 18//config: default y
19//config: depends on PIDOF 19//config: depends on PIDOF
20//config: help 20//config: help
21//config: Support '-s' for returning only the first pid found. 21//config: Support '-s' for returning only the first pid found.
22//config: 22//config:
23//config:config FEATURE_PIDOF_OMIT 23//config:config FEATURE_PIDOF_OMIT
24//config: bool "Enable omitting pids (-o PID)" 24//config: bool "Enable omitting pids (-o PID)"
25//config: default y 25//config: default y
26//config: depends on PIDOF 26//config: depends on PIDOF
27//config: help 27//config: help
28//config: Support '-o PID' for omitting the given pid(s) in output. 28//config: Support '-o PID' for omitting the given pid(s) in output.
29//config: The special pid %PPID can be used to name the parent process 29//config: The special pid %PPID can be used to name the parent process
30//config: of the pidof, in other words the calling shell or shell script. 30//config: of the pidof, in other words the calling shell or shell script.
31 31
32//applet:IF_PIDOF(APPLET(pidof, BB_DIR_BIN, BB_SUID_DROP)) 32//applet:IF_PIDOF(APPLET(pidof, BB_DIR_BIN, BB_SUID_DROP))
33 33
diff --git a/procps/pmap.c b/procps/pmap.c
index bbcd54482..c8f728897 100644
--- a/procps/pmap.c
+++ b/procps/pmap.c
@@ -9,10 +9,10 @@
9 */ 9 */
10 10
11//config:config PMAP 11//config:config PMAP
12//config: bool "pmap (6 kb)" 12//config: bool "pmap (6 kb)"
13//config: default y 13//config: default y
14//config: help 14//config: help
15//config: Display processes' memory mappings. 15//config: Display processes' memory mappings.
16 16
17//applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP)) 17//applet:IF_PMAP(APPLET(pmap, BB_DIR_USR_BIN, BB_SUID_DROP))
18//kbuild:lib-$(CONFIG_PMAP) += pmap.o 18//kbuild:lib-$(CONFIG_PMAP) += pmap.o
diff --git a/procps/powertop.c b/procps/powertop.c
index ae3aa8938..ebd659bdb 100644
--- a/procps/powertop.c
+++ b/procps/powertop.c
@@ -17,15 +17,15 @@
17//config: bool "powertop (9.1 kb)" 17//config: bool "powertop (9.1 kb)"
18//config: default y 18//config: default y
19//config: help 19//config: help
20//config: Analyze power consumption on Intel-based laptops 20//config: Analyze power consumption on Intel-based laptops
21//config: 21//config:
22//config:config FEATURE_POWERTOP_INTERACTIVE 22//config:config FEATURE_POWERTOP_INTERACTIVE
23//config: bool "Accept keyboard commands" 23//config: bool "Accept keyboard commands"
24//config: default y 24//config: default y
25//config: depends on POWERTOP 25//config: depends on POWERTOP
26//config: help 26//config: help
27//config: Without this, powertop will only refresh display every 10 seconds. 27//config: Without this, powertop will only refresh display every 10 seconds.
28//config: No keyboard commands will work, only ^C to terminate. 28//config: No keyboard commands will work, only ^C to terminate.
29 29
30// XXX This should be configurable 30// XXX This should be configurable
31#define ENABLE_FEATURE_POWERTOP_PROCIRQ 1 31#define ENABLE_FEATURE_POWERTOP_PROCIRQ 1
diff --git a/procps/ps.c b/procps/ps.c
index a8d2d188a..d4d787d78 100644
--- a/procps/ps.c
+++ b/procps/ps.c
@@ -12,24 +12,24 @@
12//config: bool "ps (11 kb)" 12//config: bool "ps (11 kb)"
13//config: default y 13//config: default y
14//config: help 14//config: help
15//config: ps gives a snapshot of the current processes. 15//config: ps gives a snapshot of the current processes.
16//config: 16//config:
17//config:config FEATURE_PS_WIDE 17//config:config FEATURE_PS_WIDE
18//config: bool "Enable wide output option (-w)" 18//config: bool "Enable wide output option (-w)"
19//config: default y 19//config: default y
20//config: depends on PS && !DESKTOP 20//config: depends on PS && !DESKTOP
21//config: help 21//config: help
22//config: Support argument 'w' for wide output. 22//config: Support argument 'w' for wide output.
23//config: If given once, 132 chars are printed, and if given more 23//config: If given once, 132 chars are printed, and if given more
24//config: than once, the length is unlimited. 24//config: than once, the length is unlimited.
25//config: 25//config:
26//config:config FEATURE_PS_LONG 26//config:config FEATURE_PS_LONG
27//config: bool "Enable long output option (-l)" 27//config: bool "Enable long output option (-l)"
28//config: default y 28//config: default y
29//config: depends on PS && !DESKTOP 29//config: depends on PS && !DESKTOP
30//config: help 30//config: help
31//config: Support argument 'l' for long output. 31//config: Support argument 'l' for long output.
32//config: Adds fields PPID, RSS, START, TIME & TTY 32//config: Adds fields PPID, RSS, START, TIME & TTY
33//config: 33//config:
34//config:config FEATURE_PS_TIME 34//config:config FEATURE_PS_TIME
35//config: bool "Support -o time and -o etime output specifiers" 35//config: bool "Support -o time and -o etime output specifiers"
@@ -42,8 +42,8 @@
42//config: default n 42//config: default n
43//config: depends on FEATURE_PS_TIME 43//config: depends on FEATURE_PS_TIME
44//config: help 44//config: help
45//config: Include support for measuring HZ on old kernels and non-ELF systems 45//config: Include support for measuring HZ on old kernels and non-ELF systems
46//config: (if you are on Linux 2.4.0+ and use ELF, you don't need this) 46//config: (if you are on Linux 2.4.0+ and use ELF, you don't need this)
47//config: 47//config:
48//config:config FEATURE_PS_ADDITIONAL_COLUMNS 48//config:config FEATURE_PS_ADDITIONAL_COLUMNS
49//config: bool "Support -o rgroup, -o ruser, -o nice specifiers" 49//config: bool "Support -o rgroup, -o ruser, -o nice specifiers"
diff --git a/procps/pstree.c b/procps/pstree.c
index cf8b81f8d..212cda23c 100644
--- a/procps/pstree.c
+++ b/procps/pstree.c
@@ -14,7 +14,7 @@
14//config: bool "pstree (9.4 kb)" 14//config: bool "pstree (9.4 kb)"
15//config: default y 15//config: default y
16//config: help 16//config: help
17//config: Display a tree of processes. 17//config: Display a tree of processes.
18 18
19//applet:IF_PSTREE(APPLET(pstree, BB_DIR_USR_BIN, BB_SUID_DROP)) 19//applet:IF_PSTREE(APPLET(pstree, BB_DIR_USR_BIN, BB_SUID_DROP))
20 20
diff --git a/procps/pwdx.c b/procps/pwdx.c
index 936153861..dac238950 100644
--- a/procps/pwdx.c
+++ b/procps/pwdx.c
@@ -12,7 +12,7 @@
12//config: bool "pwdx (3.5 kb)" 12//config: bool "pwdx (3.5 kb)"
13//config: default y 13//config: default y
14//config: help 14//config: help
15//config: Report current working directory of a process 15//config: Report current working directory of a process
16 16
17//applet:IF_PWDX(APPLET(pwdx, BB_DIR_USR_BIN, BB_SUID_DROP)) 17//applet:IF_PWDX(APPLET(pwdx, BB_DIR_USR_BIN, BB_SUID_DROP))
18 18
diff --git a/procps/smemcap.c b/procps/smemcap.c
index 327a37cdb..c15fef1c3 100644
--- a/procps/smemcap.c
+++ b/procps/smemcap.c
@@ -16,8 +16,8 @@
16//config: bool "smemcap (2.5 kb)" 16//config: bool "smemcap (2.5 kb)"
17//config: default y 17//config: default y
18//config: help 18//config: help
19//config: smemcap is a tool for capturing process data for smem, 19//config: smemcap is a tool for capturing process data for smem,
20//config: a memory usage statistic tool. 20//config: a memory usage statistic tool.
21 21
22#include "libbb.h" 22#include "libbb.h"
23#include "bb_archive.h" 23#include "bb_archive.h"
diff --git a/procps/sysctl.c b/procps/sysctl.c
index 305783be6..b17f5e896 100644
--- a/procps/sysctl.c
+++ b/procps/sysctl.c
@@ -14,7 +14,7 @@
14//config: bool "sysctl (6.9 kb)" 14//config: bool "sysctl (6.9 kb)"
15//config: default y 15//config: default y
16//config: help 16//config: help
17//config: Configure kernel parameters at runtime. 17//config: Configure kernel parameters at runtime.
18 18
19//applet:IF_BB_SYSCTL(APPLET(sysctl, BB_DIR_SBIN, BB_SUID_DROP)) 19//applet:IF_BB_SYSCTL(APPLET(sysctl, BB_DIR_SBIN, BB_SUID_DROP))
20 20
diff --git a/procps/top.c b/procps/top.c
index f43cd9c2c..015d1ab74 100644
--- a/procps/top.c
+++ b/procps/top.c
@@ -53,63 +53,63 @@
53//config: bool "top (17 kb)" 53//config: bool "top (17 kb)"
54//config: default y 54//config: default y
55//config: help 55//config: help
56//config: The top program provides a dynamic real-time view of a running 56//config: The top program provides a dynamic real-time view of a running
57//config: system. 57//config: system.
58//config: 58//config:
59//config:config FEATURE_TOP_INTERACTIVE 59//config:config FEATURE_TOP_INTERACTIVE
60//config: bool "Accept keyboard commands" 60//config: bool "Accept keyboard commands"
61//config: default y 61//config: default y
62//config: depends on TOP 62//config: depends on TOP
63//config: help 63//config: help
64//config: Without this, top will only refresh display every 5 seconds. 64//config: Without this, top will only refresh display every 5 seconds.
65//config: No keyboard commands will work, only ^C to terminate. 65//config: No keyboard commands will work, only ^C to terminate.
66//config: 66//config:
67//config:config FEATURE_TOP_CPU_USAGE_PERCENTAGE 67//config:config FEATURE_TOP_CPU_USAGE_PERCENTAGE
68//config: bool "Show CPU per-process usage percentage" 68//config: bool "Show CPU per-process usage percentage"
69//config: default y 69//config: default y
70//config: depends on TOP 70//config: depends on TOP
71//config: help 71//config: help
72//config: Make top display CPU usage for each process. 72//config: Make top display CPU usage for each process.
73//config: This adds about 2k. 73//config: This adds about 2k.
74//config: 74//config:
75//config:config FEATURE_TOP_CPU_GLOBAL_PERCENTS 75//config:config FEATURE_TOP_CPU_GLOBAL_PERCENTS
76//config: bool "Show CPU global usage percentage" 76//config: bool "Show CPU global usage percentage"
77//config: default y 77//config: default y
78//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE 78//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
79//config: help 79//config: help
80//config: Makes top display "CPU: NN% usr NN% sys..." line. 80//config: Makes top display "CPU: NN% usr NN% sys..." line.
81//config: This adds about 0.5k. 81//config: This adds about 0.5k.
82//config: 82//config:
83//config:config FEATURE_TOP_SMP_CPU 83//config:config FEATURE_TOP_SMP_CPU
84//config: bool "SMP CPU usage display ('c' key)" 84//config: bool "SMP CPU usage display ('c' key)"
85//config: default y 85//config: default y
86//config: depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS 86//config: depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS
87//config: help 87//config: help
88//config: Allow 'c' key to switch between individual/cumulative CPU stats 88//config: Allow 'c' key to switch between individual/cumulative CPU stats
89//config: This adds about 0.5k. 89//config: This adds about 0.5k.
90//config: 90//config:
91//config:config FEATURE_TOP_DECIMALS 91//config:config FEATURE_TOP_DECIMALS
92//config: bool "Show 1/10th of a percent in CPU/mem statistics" 92//config: bool "Show 1/10th of a percent in CPU/mem statistics"
93//config: default y 93//config: default y
94//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE 94//config: depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
95//config: help 95//config: help
96//config: Show 1/10th of a percent in CPU/mem statistics. 96//config: Show 1/10th of a percent in CPU/mem statistics.
97//config: This adds about 0.3k. 97//config: This adds about 0.3k.
98//config: 98//config:
99//config:config FEATURE_TOP_SMP_PROCESS 99//config:config FEATURE_TOP_SMP_PROCESS
100//config: bool "Show CPU process runs on ('j' field)" 100//config: bool "Show CPU process runs on ('j' field)"
101//config: default y 101//config: default y
102//config: depends on TOP 102//config: depends on TOP
103//config: help 103//config: help
104//config: Show CPU where process was last found running on. 104//config: Show CPU where process was last found running on.
105//config: This is the 'j' field. 105//config: This is the 'j' field.
106//config: 106//config:
107//config:config FEATURE_TOPMEM 107//config:config FEATURE_TOPMEM
108//config: bool "Topmem command ('s' key)" 108//config: bool "Topmem command ('s' key)"
109//config: default y 109//config: default y
110//config: depends on TOP 110//config: depends on TOP
111//config: help 111//config: help
112//config: Enable 's' in top (gives lots of memory info). 112//config: Enable 's' in top (gives lots of memory info).
113 113
114//applet:IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP)) 114//applet:IF_TOP(APPLET(top, BB_DIR_USR_BIN, BB_SUID_DROP))
115 115
diff --git a/procps/uptime.c b/procps/uptime.c
index 53fbe547e..24b2b39df 100644
--- a/procps/uptime.c
+++ b/procps/uptime.c
@@ -16,16 +16,16 @@
16//config: default y 16//config: default y
17//config: select PLATFORM_LINUX #sysinfo() 17//config: select PLATFORM_LINUX #sysinfo()
18//config: help 18//config: help
19//config: uptime gives a one line display of the current time, how long 19//config: uptime gives a one line display of the current time, how long
20//config: the system has been running, how many users are currently logged 20//config: the system has been running, how many users are currently logged
21//config: on, and the system load averages for the past 1, 5, and 15 minutes. 21//config: on, and the system load averages for the past 1, 5, and 15 minutes.
22//config: 22//config:
23//config:config FEATURE_UPTIME_UTMP_SUPPORT 23//config:config FEATURE_UPTIME_UTMP_SUPPORT
24//config: bool "Show the number of users" 24//config: bool "Show the number of users"
25//config: default y 25//config: default y
26//config: depends on UPTIME && FEATURE_UTMP 26//config: depends on UPTIME && FEATURE_UTMP
27//config: help 27//config: help
28//config: Display the number of users currently logged on. 28//config: Display the number of users currently logged on.
29 29
30//applet:IF_UPTIME(APPLET(uptime, BB_DIR_USR_BIN, BB_SUID_DROP)) 30//applet:IF_UPTIME(APPLET(uptime, BB_DIR_USR_BIN, BB_SUID_DROP))
31 31
diff --git a/procps/watch.c b/procps/watch.c
index 3127a0ca6..2bb7cca90 100644
--- a/procps/watch.c
+++ b/procps/watch.c
@@ -15,8 +15,8 @@
15//config: bool "watch (4.1 kb)" 15//config: bool "watch (4.1 kb)"
16//config: default y 16//config: default y
17//config: help 17//config: help
18//config: watch is used to execute a program periodically, showing 18//config: watch is used to execute a program periodically, showing
19//config: output to the screen. 19//config: output to the screen.
20 20
21//applet:IF_WATCH(APPLET(watch, BB_DIR_BIN, BB_SUID_DROP)) 21//applet:IF_WATCH(APPLET(watch, BB_DIR_BIN, BB_SUID_DROP))
22 22