busybox: disable killall5 - nothing uses it
[librecmc/librecmc.git] / package / busybox / config / procps / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 menu "Process Utilities"
7
8 config BUSYBOX_CONFIG_SMEMCAP
9         bool "smemcap"
10         default n
11         help
12           smemcap is a tool for capturing process data for smem,
13           a memory usage statistic tool.
14
15 config BUSYBOX_CONFIG_FREE
16         bool "free"
17         default y
18         help
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.
22
23 config BUSYBOX_CONFIG_FUSER
24         bool "fuser"
25         default n
26         help
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.
30
31 config BUSYBOX_CONFIG_KILL
32         bool "kill"
33         default y
34         help
35           The command kill sends the specified signal to the specified
36           process or process group. If no signal is specified, the TERM
37           signal is sent.
38
39 config BUSYBOX_CONFIG_KILLALL
40         bool "killall"
41         default y
42         depends on BUSYBOX_CONFIG_KILL
43         help
44           killall sends a signal to all processes running any of the
45           specified commands. If no signal name is specified, SIGTERM is
46           sent.
47
48 config BUSYBOX_CONFIG_KILLALL5
49         bool "killall5"
50         default n
51         depends on BUSYBOX_CONFIG_KILL
52
53 config BUSYBOX_CONFIG_NMETER
54         bool "nmeter"
55         default n
56         help
57           Prints selected system stats continuously, one line per update.
58
59 config BUSYBOX_CONFIG_PGREP
60         bool "pgrep"
61         default y
62         help
63           Look for processes by name.
64
65 config BUSYBOX_CONFIG_PIDOF
66         bool "pidof"
67         default y
68         help
69           Pidof finds the process id's (pids) of the named programs. It prints
70           those id's on the standard output.
71
72 config BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE
73         bool "Enable argument for single shot (-s)"
74         default n
75         depends on BUSYBOX_CONFIG_PIDOF
76         help
77           Support argument '-s' for returning only the first pid found.
78
79 config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
80         bool "Enable argument for omitting pids (-o)"
81         default n
82         depends on BUSYBOX_CONFIG_PIDOF
83         help
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.
87
88 config BUSYBOX_CONFIG_PKILL
89         bool "pkill"
90         default y
91         help
92           Send signals to processes by name.
93
94 config BUSYBOX_CONFIG_PS
95         bool "ps"
96         default y
97         help
98           ps gives a snapshot of the current processes.
99
100 config BUSYBOX_CONFIG_FEATURE_PS_WIDE
101         bool "Enable wide output option (-w)"
102         default n
103         depends on BUSYBOX_CONFIG_PS
104         help
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.
108
109 config BUSYBOX_CONFIG_FEATURE_PS_TIME
110         bool "Enable time and elapsed time output"
111         default n
112         depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
113         help
114           Support -o time and -o etime output specifiers.
115
116 config BUSYBOX_CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS
117         bool "Enable additional ps columns"
118         default n
119         depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
120         help
121           Support -o rgroup, -o ruser, -o nice output specifiers.
122
123 config BUSYBOX_CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS
124         bool "Support Linux prior to 2.4.0 and non-ELF systems"
125         default n
126         depends on BUSYBOX_CONFIG_FEATURE_PS_TIME
127         help
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)
130
131 config BUSYBOX_CONFIG_RENICE
132         bool "renice"
133         default n
134         help
135           Renice alters the scheduling priority of one or more running
136           processes.
137
138 config BUSYBOX_CONFIG_BB_SYSCTL
139         bool "sysctl"
140         default y
141         help
142           Configure kernel parameters at runtime.
143
144 config BUSYBOX_CONFIG_TOP
145         bool "top"
146         default y
147         help
148           The top program provides a dynamic real-time view of a running
149           system.
150
151 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
152         bool "Show CPU per-process usage percentage"
153         default y
154         depends on BUSYBOX_CONFIG_TOP
155         help
156           Make top display CPU usage for each process.
157           This adds about 2k.
158
159 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
160         bool "Show CPU global usage percentage"
161         default y
162         depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
163         help
164           Makes top display "CPU: NN% usr NN% sys..." line.
165           This adds about 0.5k.
166
167 config BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU
168         bool "SMP CPU usage display ('c' key)"
169         default n
170         depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
171         help
172           Allow 'c' key to switch between individual/cumulative CPU stats
173           This adds about 0.5k.
174
175 config BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS
176         bool "Show 1/10th of a percent in CPU/mem statistics"
177         default n
178         depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
179         help
180           Show 1/10th of a percent in CPU/mem statistics.
181           This adds about 0.3k.
182
183 config BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS
184         bool "Show CPU process runs on ('j' field)"
185         default n
186         depends on BUSYBOX_CONFIG_TOP
187         help
188           Show CPU where process was last found running on.
189           This is the 'j' field.
190
191 config BUSYBOX_CONFIG_FEATURE_TOPMEM
192         bool "Topmem command ('s' key)"
193         default n
194         depends on BUSYBOX_CONFIG_TOP
195         help
196           Enable 's' in top (gives lots of memory info).
197
198 config BUSYBOX_CONFIG_FEATURE_SHOW_THREADS
199         bool "Support for showing threads in ps/top"
200         default n
201         depends on BUSYBOX_CONFIG_PS || BUSYBOX_CONFIG_TOP
202         help
203           Enables ps -T option and 'h' command in top
204
205 config BUSYBOX_CONFIG_UPTIME
206         bool "uptime"
207         default y
208         help
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.
212
213 config BUSYBOX_CONFIG_WATCH
214         bool "watch"
215         default n
216         help
217           watch is used to execute a program periodically, showing
218           output to the screen.
219
220 endmenu