upgrade busybox to v1.11.1 and add current upstream fixes
[openwrt/staging/yousong.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_FREE
9 bool "free"
10 default y
11 help
12 free displays the total amount of free and used physical and swap
13 memory in the system, as well as the buffers used by the kernel.
14 The shared memory column should be ignored; it is obsolete.
15
16 config BUSYBOX_CONFIG_FUSER
17 bool "fuser"
18 default n
19 help
20 fuser lists all PIDs (Process IDs) that currently have a given
21 file open. fuser can also list all PIDs that have a given network
22 (TCP or UDP) port open.
23
24 config BUSYBOX_CONFIG_KILL
25 bool "kill"
26 default y
27 help
28 The command kill sends the specified signal to the specified
29 process or process group. If no signal is specified, the TERM
30 signal is sent.
31
32 config BUSYBOX_CONFIG_KILLALL
33 bool "killall"
34 default y
35 depends on BUSYBOX_CONFIG_KILL
36 help
37 killall sends a signal to all processes running any of the
38 specified commands. If no signal name is specified, SIGTERM is
39 sent.
40
41 config BUSYBOX_CONFIG_KILLALL5
42 bool "killall5"
43 default y
44 depends on BUSYBOX_CONFIG_KILL
45
46 config BUSYBOX_CONFIG_NMETER
47 bool "nmeter"
48 default n
49 help
50 Prints selected system stats continuously, one line per update.
51
52 config BUSYBOX_CONFIG_PGREP
53 bool "pgrep"
54 default y
55 help
56 Look for processes by name.
57
58 config BUSYBOX_CONFIG_PIDOF
59 bool "pidof"
60 default y
61 help
62 Pidof finds the process id's (pids) of the named programs. It prints
63 those id's on the standard output.
64
65 config BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE
66 bool "Enable argument for single shot (-s)"
67 default n
68 depends on BUSYBOX_CONFIG_PIDOF
69 help
70 Support argument '-s' for returning only the first pid found.
71
72 config BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT
73 bool "Enable argument for omitting pids (-o)"
74 default n
75 depends on BUSYBOX_CONFIG_PIDOF
76 help
77 Support argument '-o' for omitting the given pids in output.
78 The special pid %PPID can be used to name the parent process
79 of the pidof, in other words the calling shell or shell script.
80
81 config BUSYBOX_CONFIG_PKILL
82 bool "pkill"
83 default y
84 help
85 Send signals to processes by name.
86
87 config BUSYBOX_CONFIG_PS
88 bool "ps"
89 default y
90 help
91 ps gives a snapshot of the current processes.
92
93 config BUSYBOX_CONFIG_FEATURE_PS_WIDE
94 bool "Enable argument for wide output (-w)"
95 default n
96 depends on BUSYBOX_CONFIG_PS
97 help
98 Support argument 'w' for wide output.
99 If given once, 132 chars are printed and given more than
100 one, the length is unlimited.
101
102 config BUSYBOX_CONFIG_FEATURE_PS_TIME
103 bool "Enable time and elapsed time output"
104 default n
105 depends on BUSYBOX_CONFIG_PS && BUSYBOX_CONFIG_DESKTOP
106 help
107 Support -o time and -o etime output specifiers.
108
109 config BUSYBOX_CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS
110 bool "Support Linux prior to 2.4.0 and non-ELF systems"
111 default n
112 depends on BUSYBOX_CONFIG_FEATURE_PS_TIME
113 help
114 Include support for measuring HZ on old kernels and non-ELF systems
115 (if you are on Linux 2.4.0+ and use ELF, you don't need this)
116
117 config BUSYBOX_CONFIG_RENICE
118 bool "renice"
119 default n
120 help
121 Renice alters the scheduling priority of one or more running
122 processes.
123
124 config BUSYBOX_CONFIG_BB_SYSCTL
125 bool "sysctl"
126 default y
127 help
128 Configure kernel parameters at runtime.
129
130 config BUSYBOX_CONFIG_TOP
131 bool "top"
132 default y
133 help
134 The top program provides a dynamic real-time view of a running
135 system.
136
137 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
138 bool "Show CPU per-process usage percentage (adds 2k bytes)"
139 default y
140 depends on BUSYBOX_CONFIG_TOP
141 help
142 Make top display CPU usage for each process.
143
144 config BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS
145 bool "Show CPU global usage percentage (adds 0.5k bytes)"
146 default y
147 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
148 help
149 Makes top display "CPU: NN% usr NN% sys..." line.
150
151 config BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS
152 bool "Show 1/10th of a percent in CPU/mem statistics (adds 0.3k bytes)"
153 default n
154 depends on BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE
155 help
156 Show 1/10th of a percent in CPU/mem statistics.
157
158 config BUSYBOX_CONFIG_FEATURE_TOPMEM
159 bool "topmem"
160 default n
161 depends on BUSYBOX_CONFIG_TOP
162 help
163 Enable 's' in top (gives lots of memory info)
164
165 config BUSYBOX_CONFIG_UPTIME
166 bool "uptime"
167 default y
168 help
169 uptime gives a one line display of the current time, how long
170 the system has been running, how many users are currently logged
171 on, and the system load averages for the past 1, 5, and 15 minutes.
172
173 config BUSYBOX_CONFIG_WATCH
174 bool "watch"
175 default n
176 #huh?? select DATE
177 help
178 watch is used to execute a program periodically, showing
179 output to the screen.
180
181
182 endmenu
183