fix typos in CONFIG_SITE files
[openwrt/svn-archive/openwrt.git] / openwrt / package / procps / Config.in
1 menu "Basic /proc utilities"
2
3 config BR2_PACKAGE_PROCPS
4 prompt "Basic /proc utilities"
5 tristate
6 default m if CONFIG_DEVEL
7 help
8 procps is a package that has many small useful utilities that
9 give information about processes using the /proc filesystem. The
10 package includes the programs ps, vmstat, top, w, kill, free, slabtop,
11 skill, and others.
12
13 Note that versions of many of these programs are included in BusyBox.
14 This package will replace many of them.
15
16 http://procps.sourceforge.net/
17
18 config BR2_PACKAGE_PROCPS_PS
19 prompt "ps - report a snapshot of the current processes."
20 bool
21 default y if CONFIG_DEVEL
22 depends BR2_PACKAGE_PROCPS
23
24 config BR2_PACKAGE_PROCPS_VMSTAT
25 prompt "vmstat - Report virtual memory statistics"
26 bool
27 default y if CONFIG_DEVEL
28 depends BR2_PACKAGE_PROCPS
29
30 config BR2_PACKAGE_PROCPS_TOP
31 prompt "top (requires libncurses) - display Linux tasks"
32 bool
33 default y if CONFIG_DEVEL
34 depends BR2_PACKAGE_PROCPS
35 select BR2_PACKAGE_LIBNCURSES
36
37 config BR2_PACKAGE_PROCPS_SLABTOP
38 prompt "slabtop (requires libncurses) - display kernel slab cache info"
39 bool
40 default y if CONFIG_DEVEL
41 depends BR2_PACKAGE_PROCPS
42 select BR2_PACKAGE_LIBNCURSES
43
44 config BR2_PACKAGE_PROCPS_PMAP
45 prompt "pmap - report memory map of a process"
46 bool
47 default y if CONFIG_DEVEL
48 depends BR2_PACKAGE_PROCPS
49
50 config BR2_PACKAGE_PROCPS_PWDX
51 prompt "pwdx - report current working directory of a process"
52 bool
53 default y if CONFIG_DEVEL
54 depends BR2_PACKAGE_PROCPS
55
56 config BR2_PACKAGE_PROCPS_W
57 prompt "w - Show who is logged on and what they are doing"
58 bool
59 default y if CONFIG_DEVEL
60 depends BR2_PACKAGE_PROCPS
61
62 config BR2_PACKAGE_PROCPS_KILL
63 prompt "kill - terminate a process"
64 bool
65 default y if CONFIG_DEVEL
66 depends BR2_PACKAGE_PROCPS
67
68 config BR2_PACKAGE_PROCPS_SKILL
69 prompt "skill, snice - send a signal or report process status"
70 bool
71 default y if CONFIG_DEVEL
72 depends BR2_PACKAGE_PROCPS
73
74 config BR2_PACKAGE_PROCPS_PGREP
75 prompt "pgrep, pkill - lookup or signal processes based on name or other attributes"
76 bool
77 default y if CONFIG_DEVEL
78 depends BR2_PACKAGE_PROCPS
79
80 config BR2_PACKAGE_PROCPS_FREE
81 prompt "free - display system memory information"
82 bool
83 default y if CONFIG_DEVEL
84 depends BR2_PACKAGE_PROCPS
85
86 config BR2_PACKAGE_PROCPS_SYSCTL
87 prompt "sysctl - configure kernel parameters at runtime"
88 bool
89 default y if CONFIG_DEVEL
90 depends BR2_PACKAGE_PROCPS
91
92 config BR2_PACKAGE_PROCPS_TLOAD
93 prompt "tload - graphic representation of system load average"
94 bool
95 default y if CONFIG_DEVEL
96 depends BR2_PACKAGE_PROCPS
97
98 config BR2_PACKAGE_PROCPS_WATCH
99 prompt "watch - execute a program periodically with fullscreen output"
100 bool
101 default y if CONFIG_DEVEL
102 depends BR2_PACKAGE_PROCPS
103
104 endmenu