tag rc6
[openwrt/svn-archive/openwrt.git] / package / psmisc / Config.in
1 menu "Misc /proc utilities"
2
3 config BR2_PACKAGE_PSMISC
4 prompt "Misc /proc utilities"
5 tristate
6 default m if CONFIG_DEVEL
7 help
8 PSmisc package is a set of additional small useful utilities that use
9 the proc filesystem: fuser, killall, pstree, and pidof
10
11 http://psmisc.sourceforge.net/
12
13 config BR2_PACKAGE_PSMISC_FUSER
14 prompt "fuser - identify processes using files or sockets"
15 bool
16 default y if CONFIG_DEVEL
17 depends BR2_PACKAGE_PSMISC
18
19 config BR2_PACKAGE_PSMISC_KILLALL
20 prompt "killall - kill process by name, pidof - find PIDs by name"
21 bool
22 default y if CONFIG_DEVEL
23 depends BR2_PACKAGE_PSMISC
24
25 config BR2_PACKAGE_PSMISC_PSTREE
26 prompt "pstree (requires libncurses) - display a tree of processes"
27 bool
28 default y if CONFIG_DEVEL
29 depends BR2_PACKAGE_PSMISC
30 select BR2_PACKAGE_LIBNCURSES
31
32 endmenu