aboutsummaryrefslogtreecommitdiffstats
path: root/package/net-snmp
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-05-24 00:22:23 +0000
committerNicolas Thill <nico@openwrt.org>2005-05-24 00:22:23 +0000
commitd196ec2db56ddd00b7b44ff24460c3a530047c17 (patch)
tree5c7119849b3a01f4863bd218792060e34a960a62 /package/net-snmp
parent180132d70812fb6461f7d0f35443ae2405eb0cb5 (diff)
downloadmaster-187ad058-d196ec2db56ddd00b7b44ff24460c3a530047c17.tar.gz
master-187ad058-d196ec2db56ddd00b7b44ff24460c3a530047c17.tar.bz2
master-187ad058-d196ec2db56ddd00b7b44ff24460c3a530047c17.zip
Move complex packages to their own menu,
Standardize config options, Fix typos git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1035 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/net-snmp')
-rw-r--r--package/net-snmp/Config.in31
1 files changed, 20 insertions, 11 deletions
diff --git a/package/net-snmp/Config.in b/package/net-snmp/Config.in
index 8f0cdffff5..8ebbc52afc 100644
--- a/package/net-snmp/Config.in
+++ b/package/net-snmp/Config.in
@@ -1,8 +1,17 @@
+menu "net-snmp - Open source SNMP (Simple Network Management Protocol) implementation"
+
config BR2_PACKAGE_NET_SNMP
- prompt "net-snmp - Open source SNMP (Simple Network Management Protocol) implementation"
bool
- default y if CONFIG_DEVEL
+ default n
+ depends BR2_PACKAGE_LIBNETSNMP
+
+config BR2_PACKAGE_LIBNETSNMP
+ prompt "libnetsnmp - SNMP libraries"
+ tristate
+ default m if CONFIG_DEVEL
+ select BR2_PACKAGE_NET_SNMP
help
+
Simple Network Management Protocol (SNMP) is a widely used
protocol for monitoring the health and welfare of network
equipment (eg. routers), computer equipment and even devices
@@ -11,19 +20,19 @@ config BR2_PACKAGE_NET_SNMP
http://www.net-snmp.org/
-
-config BR2_PACKAGE_LIBNETSNMP
- tristate "libnet-snmp - SNMP libraries"
- default m if CONFIG_DEVEL
- depends BR2_PACKAGE_NET_SNMP
+ This package contains shared libraries, needed by other programs.
+
config BR2_PACKAGE_SNMPD
- tristate "snmdp - SNMP agent"
- default m if CONFIG_DEVEL
depends BR2_PACKAGE_LIBNETSNMP
+ prompt "snmpd - SNMP agent"
+ tristate
+ default m if CONFIG_DEVEL
config BR2_PACKAGE_SNMP_UTILS
- tristate "snmp-utils - SNMP client utilities"
- default m if CONFIG_DEVEL
depends BR2_PACKAGE_LIBNETSNMP
+ prompt "snmp-utils - SNMP client utilities"
+ tristate
+ default m if CONFIG_DEVEL
+endmenu