source: MondoRescue/branches/3.0/mindi-busybox/procps/Config.in@ 2899

Last change on this file since 2899 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 5.5 KB
Line 
1# DO NOT EDIT. This file is generated from Config.src
2#
3# For a description of the syntax of this configuration file,
4# see scripts/kbuild/config-language.txt.
5#
6
7menu "Process Utilities"
8
9config IOSTAT
10 bool "iostat"
11 default y
12 help
13 Report CPU and I/O statistics
14config MPSTAT
15 bool "mpstat"
16 default y
17 help
18 Per-processor statistics
19config PMAP
20 bool "pmap"
21 default y
22 help
23 Display processes' memory mappings.
24config POWERTOP
25 bool "powertop"
26 default y
27 help
28 Analyze power consumption on Intel-based laptops
29config SMEMCAP
30 bool "smemcap"
31 default y
32 help
33 smemcap is a tool for capturing process data for smem,
34 a memory usage statistic tool.
35
36config FREE
37 bool "free"
38 default y
39 depends on PLATFORM_LINUX #sysinfo()
40 help
41 free displays the total amount of free and used physical and swap
42 memory in the system, as well as the buffers used by the kernel.
43 The shared memory column should be ignored; it is obsolete.
44
45config FUSER
46 bool "fuser"
47 default y
48 help
49 fuser lists all PIDs (Process IDs) that currently have a given
50 file open. fuser can also list all PIDs that have a given network
51 (TCP or UDP) port open.
52
53config KILL
54 bool "kill"
55 default y
56 help
57 The command kill sends the specified signal to the specified
58 process or process group. If no signal is specified, the TERM
59 signal is sent.
60
61config KILLALL
62 bool "killall"
63 default y
64 depends on KILL
65 help
66 killall sends a signal to all processes running any of the
67 specified commands. If no signal name is specified, SIGTERM is
68 sent.
69
70config KILLALL5
71 bool "killall5"
72 default y
73 depends on KILL
74
75config NMETER
76 bool "nmeter"
77 default y
78 help
79 Prints selected system stats continuously, one line per update.
80
81config PGREP
82 bool "pgrep"
83 default y
84 help
85 Look for processes by name.
86
87config PIDOF
88 bool "pidof"
89 default y
90 help
91 Pidof finds the process id's (pids) of the named programs. It prints
92 those id's on the standard output.
93
94config FEATURE_PIDOF_SINGLE
95 bool "Enable argument for single shot (-s)"
96 default y
97 depends on PIDOF
98 help
99 Support argument '-s' for returning only the first pid found.
100
101config FEATURE_PIDOF_OMIT
102 bool "Enable argument for omitting pids (-o)"
103 default y
104 depends on PIDOF
105 help
106 Support argument '-o' for omitting the given pids in output.
107 The special pid %PPID can be used to name the parent process
108 of the pidof, in other words the calling shell or shell script.
109
110config PKILL
111 bool "pkill"
112 default y
113 help
114 Send signals to processes by name.
115
116config PS
117 bool "ps"
118 default y
119 help
120 ps gives a snapshot of the current processes.
121
122config FEATURE_PS_WIDE
123 bool "Enable wide output option (-w)"
124 default y
125 depends on PS
126 help
127 Support argument 'w' for wide output.
128 If given once, 132 chars are printed, and if given more
129 than once, the length is unlimited.
130
131config FEATURE_PS_TIME
132 bool "Enable time and elapsed time output"
133 default y
134 depends on PS && DESKTOP && PLATFORM_LINUX #sysinfo()
135 help
136 Support -o time and -o etime output specifiers.
137
138config FEATURE_PS_ADDITIONAL_COLUMNS
139 bool "Enable additional ps columns"
140 default y
141 depends on PS && DESKTOP
142 help
143 Support -o rgroup, -o ruser, -o nice output specifiers.
144
145config FEATURE_PS_UNUSUAL_SYSTEMS
146 bool "Support Linux prior to 2.4.0 and non-ELF systems"
147 default n
148 depends on FEATURE_PS_TIME
149 help
150 Include support for measuring HZ on old kernels and non-ELF systems
151 (if you are on Linux 2.4.0+ and use ELF, you don't need this)
152
153config RENICE
154 bool "renice"
155 default y
156 help
157 Renice alters the scheduling priority of one or more running
158 processes.
159
160config BB_SYSCTL
161 bool "sysctl"
162 default y
163 help
164 Configure kernel parameters at runtime.
165
166config TOP
167 bool "top"
168 default y
169 help
170 The top program provides a dynamic real-time view of a running
171 system.
172
173config FEATURE_TOP_CPU_USAGE_PERCENTAGE
174 bool "Show CPU per-process usage percentage"
175 default y
176 depends on TOP
177 help
178 Make top display CPU usage for each process.
179 This adds about 2k.
180
181config FEATURE_TOP_CPU_GLOBAL_PERCENTS
182 bool "Show CPU global usage percentage"
183 default y
184 depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
185 help
186 Makes top display "CPU: NN% usr NN% sys..." line.
187 This adds about 0.5k.
188
189config FEATURE_TOP_SMP_CPU
190 bool "SMP CPU usage display ('c' key)"
191 default y
192 depends on FEATURE_TOP_CPU_GLOBAL_PERCENTS
193 help
194 Allow 'c' key to switch between individual/cumulative CPU stats
195 This adds about 0.5k.
196
197config FEATURE_TOP_DECIMALS
198 bool "Show 1/10th of a percent in CPU/mem statistics"
199 default y
200 depends on FEATURE_TOP_CPU_USAGE_PERCENTAGE
201 help
202 Show 1/10th of a percent in CPU/mem statistics.
203 This adds about 0.3k.
204
205config FEATURE_TOP_SMP_PROCESS
206 bool "Show CPU process runs on ('j' field)"
207 default y
208 depends on TOP
209 help
210 Show CPU where process was last found running on.
211 This is the 'j' field.
212
213config FEATURE_TOPMEM
214 bool "Topmem command ('s' key)"
215 default y
216 depends on TOP
217 help
218 Enable 's' in top (gives lots of memory info).
219
220config FEATURE_SHOW_THREADS
221 bool "Support for showing threads in ps/top"
222 default y
223 depends on PS || TOP
224 help
225 Enables ps -T option and 'h' command in top
226
227config UPTIME
228 bool "uptime"
229 default y
230 depends on PLATFORM_LINUX #sysinfo()
231 help
232 uptime gives a one line display of the current time, how long
233 the system has been running, how many users are currently logged
234 on, and the system load averages for the past 1, 5, and 15 minutes.
235
236config WATCH
237 bool "watch"
238 default y
239 help
240 watch is used to execute a program periodically, showing
241 output to the screen.
242
243endmenu
Note: See TracBrowser for help on using the repository browser.