2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
6 menu "Process Utilities"
8 config BUSYBOX_CONFIG_SMEMCAP
12 smemcap is a tool for capturing process data for smem,
13 a memory usage statistic tool.
15 config BUSYBOX_CONFIG_FREE
19 free displays the total amount of free and used physical and swap
20 memory in the system, as well as the buffers used by the kernel.
21 The shared memory column should be ignored; it is obsolete.
23 config BUSYBOX_CONFIG_FUSER
27 fuser lists all PIDs (Process IDs) that currently have a given
28 file open. fuser can also list all PIDs that have a given network
29 (TCP or UDP) port open.
31 config BUSYBOX_CONFIG_KILL
35 The command kill sends the specified signal to the specified
36 process or process group. If no signal is specified, the TERM
39 config BUSYBOX_CONFIG_KILLALL
42 depends on BUSYBOX_CONFIG_KILL
44 killall sends a signal to all processes running any of the
45 specified commands. If no signal name is specified, SIGTERM is
48 config BUSYBOX_CONFIG_KILLALL5
51 depends on BUSYBOX_CONFIG_KILL
53 config BUSYBOX_CONFIG_NMETER
57 Prints selected system stats continuously, one line per update.
59 config BUSYBOX_CONFIG_PGREP
63 Look for processes by name.
65 config BUSYBOX_CONFIG_PIDOF
69 Pidof finds the process id's (pids) of the named programs. It prints
70 those id's on the standard output.
72 config BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE
73 bool "Enable argument for single shot (-s)"
75 depends on BUSYBOX_CONFIG_PIDOF
77 Support argument '-s' for returning only the first pid found.
79 config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
80 bool "Enable argument for omitting pids (-o)"
82 depends on BUSYBOX_CONFIG_PIDOF
84 Support argument '-o' for omitting the given pids in output.
85 The special pid %PPID can be used to name the parent process
86 of the pidof, in other words the calling shell or shell script.
88 config BUSYBOX_CONFIG_PKILL
92 Send signals to processes by name.
94 config BUSYBOX_CONFIG_PS
98 ps gives a snapshot of the current processes.
100 config BUSYBOX_CONFIG_FEATURE_PS_WIDE
101 bool "Enable wide output option (-w)"
103 depends on BUSYBOX_CONFIG_PS
105 Support argument 'w' for wide output.
106 If given once, 132 chars are printed, and if given more
107 than once, the length is unlimited.
109 config BUSYBOX_CONFIG_FEATURE_PS_TIME
110 bool "Enable time and elapsed time output"
112 depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
114 Support -o time and -o etime output specifiers.
116 config BUSYBOX_CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS
117 bool "Enable additional ps columns"
119 depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
121 Support -o rgroup, -o ruser, -o nice output specifiers.
123 config BUSYBOX_CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS
124 bool "Support Linux prior to 2.4.0 and non-ELF systems"
126 depends on BUSYBOX_CONFIG_FEATURE_PS_TIME
128 Include support for measuring HZ on old kernels and non-ELF systems
129 (if you are on Linux 2.4.0+ and use ELF, you don't need this)
131 config BUSYBOX_CONFIG_RENICE
135 Renice alters the scheduling priority of one or more running
138 config BUSYBOX_CONFIG_BB_SYSCTL
142 Configure kernel parameters at runtime.
144 config BUSYBOX_CONFIG_TOP
148 The top program provides a dynamic real-time view of a running
151 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
152 bool "Show CPU per-process usage percentage"
154 depends on BUSYBOX_CONFIG_TOP
156 Make top display CPU usage for each process.
159 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
160 bool "Show CPU global usage percentage"
162 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
164 Makes top display "CPU: NN% usr NN% sys..." line.
165 This adds about 0.5k.
167 config BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU
168 bool "SMP CPU usage display ('c' key)"
170 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
172 Allow 'c' key to switch between individual/cumulative CPU stats
173 This adds about 0.5k.
175 config BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS
176 bool "Show 1/10th of a percent in CPU/mem statistics"
178 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
180 Show 1/10th of a percent in CPU/mem statistics.
181 This adds about 0.3k.
183 config BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS
184 bool "Show CPU process runs on ('j' field)"
186 depends on BUSYBOX_CONFIG_TOP
188 Show CPU where process was last found running on.
189 This is the 'j' field.
191 config BUSYBOX_CONFIG_FEATURE_TOPMEM
192 bool "Topmem command ('s' key)"
194 depends on BUSYBOX_CONFIG_TOP
196 Enable 's' in top (gives lots of memory info).
198 config BUSYBOX_CONFIG_FEATURE_SHOW_THREADS
199 bool "Support for showing threads in ps/top"
201 depends on BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_TOP
203 Enables ps -T option and 'h' command in top
205 config BUSYBOX_CONFIG_UPTIME
209 uptime gives a one line display of the current time, how long
210 the system has been running, how many users are currently logged
211 on, and the system load averages for the past 1, 5, and 15 minutes.
213 config BUSYBOX_CONFIG_WATCH
217 watch is used to execute a program periodically, showing
218 output to the screen.