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_IOSTAT
12 Report CPU and I/O statistics
13 config BUSYBOX_CONFIG_MPSTAT
17 Per-processor statistics
18 config BUSYBOX_CONFIG_PMAP
22 Display processes' memory mappings.
23 config BUSYBOX_CONFIG_POWERTOP
27 Analyze power consumption on Intel-based laptops
28 config BUSYBOX_CONFIG_SMEMCAP
32 smemcap is a tool for capturing process data for smem,
33 a memory usage statistic tool.
35 config BUSYBOX_CONFIG_FREE
38 depends on BUSYBOX_CONFIG_PLATFORM_LINUX
40 free displays the total amount of free and used physical and swap
41 memory in the system, as well as the buffers used by the kernel.
42 The shared memory column should be ignored; it is obsolete.
44 config BUSYBOX_CONFIG_FUSER
48 fuser lists all PIDs (Process IDs) that currently have a given
49 file open. fuser can also list all PIDs that have a given network
50 (TCP or UDP) port open.
52 config BUSYBOX_CONFIG_KILL
56 The command kill sends the specified signal to the specified
57 process or process group. If no signal is specified, the TERM
60 config BUSYBOX_CONFIG_KILLALL
63 depends on BUSYBOX_CONFIG_KILL
65 killall sends a signal to all processes running any of the
66 specified commands. If no signal name is specified, SIGTERM is
69 config BUSYBOX_CONFIG_KILLALL5
72 depends on BUSYBOX_CONFIG_KILL
74 config BUSYBOX_CONFIG_NMETER
78 Prints selected system stats continuously, one line per update.
80 config BUSYBOX_CONFIG_PGREP
84 Look for processes by name.
86 config BUSYBOX_CONFIG_PIDOF
90 Pidof finds the process id's (pids) of the named programs. It prints
91 those id's on the standard output.
93 config BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE
94 bool "Enable argument for single shot (-s)"
96 depends on BUSYBOX_CONFIG_PIDOF
98 Support argument '-s' for returning only the first pid found.
100 config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
101 bool "Enable argument for omitting pids (-o)"
103 depends on BUSYBOX_CONFIG_PIDOF
105 Support argument '-o' for omitting the given pids in output.
106 The special pid %PPID can be used to name the parent process
107 of the pidof, in other words the calling shell or shell script.
109 config BUSYBOX_CONFIG_PKILL
113 Send signals to processes by name.
115 config BUSYBOX_CONFIG_PS
119 ps gives a snapshot of the current processes.
121 config BUSYBOX_CONFIG_FEATURE_PS_WIDE
122 bool "Enable wide output option (-w)"
124 depends on BUSYBOX_CONFIG_PS
126 Support argument 'w' for wide output.
127 If given once, 132 chars are printed, and if given more
128 than once, the length is unlimited.
130 config BUSYBOX_CONFIG_FEATURE_PS_TIME
131 bool "Enable time and elapsed time output"
133 depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP && BUSYBOX_CONFIG_PLATFORM_LINUX
135 Support -o time and -o etime output specifiers.
137 config BUSYBOX_CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS
138 bool "Enable additional ps columns"
140 depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
142 Support -o rgroup, -o ruser, -o nice output specifiers.
144 config BUSYBOX_CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS
145 bool "Support Linux prior to 2.4.0 and non-ELF systems"
147 depends on BUSYBOX_CONFIG_FEATURE_PS_TIME
149 Include support for measuring HZ on old kernels and non-ELF systems
150 (if you are on Linux 2.4.0+ and use ELF, you don't need this)
152 config BUSYBOX_CONFIG_RENICE
156 Renice alters the scheduling priority of one or more running
159 config BUSYBOX_CONFIG_BB_SYSCTL
163 Configure kernel parameters at runtime.
165 config BUSYBOX_CONFIG_TOP
169 The top program provides a dynamic real-time view of a running
172 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
173 bool "Show CPU per-process usage percentage"
175 depends on BUSYBOX_CONFIG_TOP
177 Make top display CPU usage for each process.
180 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
181 bool "Show CPU global usage percentage"
183 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
185 Makes top display "CPU: NN% usr NN% sys..." line.
186 This adds about 0.5k.
188 config BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU
189 bool "SMP CPU usage display ('c' key)"
191 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
193 Allow 'c' key to switch between individual/cumulative CPU stats
194 This adds about 0.5k.
196 config BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS
197 bool "Show 1/10th of a percent in CPU/mem statistics"
199 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
201 Show 1/10th of a percent in CPU/mem statistics.
202 This adds about 0.3k.
204 config BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS
205 bool "Show CPU process runs on ('j' field)"
207 depends on BUSYBOX_CONFIG_TOP
209 Show CPU where process was last found running on.
210 This is the 'j' field.
212 config BUSYBOX_CONFIG_FEATURE_TOPMEM
213 bool "Topmem command ('s' key)"
215 depends on BUSYBOX_CONFIG_TOP
217 Enable 's' in top (gives lots of memory info).
219 config BUSYBOX_CONFIG_FEATURE_SHOW_THREADS
220 bool "Support for showing threads in ps/top"
222 depends on BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_TOP
224 Enables ps -T option and 'h' command in top
226 config BUSYBOX_CONFIG_UPTIME
229 depends on BUSYBOX_CONFIG_PLATFORM_LINUX
231 uptime gives a one line display of the current time, how long
232 the system has been running, how many users are currently logged
233 on, and the system load averages for the past 1, 5, and 15 minutes.
235 config BUSYBOX_CONFIG_WATCH
239 watch is used to execute a program periodically, showing
240 output to the screen.