fix bug #156, thx for reporting
[openwrt-10.03/.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_KILL
17         bool "kill"
18         default y
19         help
20           The command kill sends the specified signal to the specified
21           process or process group.  If no signal is specified, the TERM
22           signal is sent.
23
24 config BUSYBOX_CONFIG_KILLALL
25         bool "killall"
26         default y
27         depends on BUSYBOX_CONFIG_KILL
28         help
29           killall sends a signal to all processes running any of the
30           specified commands.  If no signal name is specified, SIGTERM is
31           sent.
32
33 config BUSYBOX_CONFIG_KILLALL5
34         bool "killall5"
35         default y
36         depends on BUSYBOX_CONFIG_KILL
37         
38 config BUSYBOX_CONFIG_PIDOF
39         bool "pidof"
40         default y
41         help
42           Pidof finds the process id's (pids) of the named programs. It prints
43           those id's on the standard output.
44
45 config BUSYBOX_CONFIG_PS
46         bool "ps"
47         default y
48         help
49           ps gives a snapshot of the current processes.
50
51 config BUSYBOX_CONFIG_RENICE
52         bool "renice"
53         default n
54         help
55           Renice alters the scheduling priority of one or more running
56           processes.
57
58 config BUSYBOX_CONFIG_TOP
59         bool "top"
60         default y
61         help
62           The top program provides a dynamic real-time view of a running
63           system.
64
65 config BUSYBOX_FEATURE_CPU_USAGE_PERCENTAGE
66         bool
67         default y
68         depends on BUSYBOX_CONFIG_TOP
69         help
70           Make top display CPU usage.
71
72 config BUSYBOX_CONFIG_UPTIME
73         bool "uptime"
74         default y
75         help
76           uptime gives a one line display of the current time, how long
77           the system has been running, how many users are currently logged
78           on, and the system load averages for the past 1, 5, and 15 minutes.
79
80 config BUSYBOX_CONFIG_BB_SYSCTL
81         bool "sysctl"
82         default y
83         help
84           sysctl - configure kernel parameters at runtime
85
86 endmenu
87