Move complex packages to their own menu,
[openwrt.git] / openwrt / package / net-snmp / Config.in
1 menu "net-snmp - Open source SNMP (Simple Network Management Protocol) implementation"
2
3 config BR2_PACKAGE_NET_SNMP
4         bool
5         default n
6         depends BR2_PACKAGE_LIBNETSNMP
7
8 config BR2_PACKAGE_LIBNETSNMP
9         prompt "libnetsnmp - SNMP libraries"
10         tristate
11         default m if CONFIG_DEVEL
12         select BR2_PACKAGE_NET_SNMP
13         help
14           
15           Simple Network Management Protocol (SNMP) is a widely used 
16           protocol for monitoring the health and welfare of network 
17           equipment (eg. routers), computer equipment and even devices 
18           like UPSs. Net-SNMP is a suite of applications used to implement 
19           SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
20           
21           http://www.net-snmp.org/
22           
23           This package contains shared libraries, needed by other programs.
24           
25
26 config BR2_PACKAGE_SNMPD
27         depends BR2_PACKAGE_LIBNETSNMP
28         prompt "snmpd - SNMP agent"
29         tristate
30         default m if CONFIG_DEVEL
31
32 config BR2_PACKAGE_SNMP_UTILS
33         depends BR2_PACKAGE_LIBNETSNMP
34         prompt "snmp-utils - SNMP client utilities"
35         tristate
36         default m if CONFIG_DEVEL
37
38 endmenu