if BR2_PACKAGE_NETSNMP
+config BR2_PACKAGE_NETSNMP_SERVER
+ bool "server"
+ default y
+ help
+ The snmpd server.
+
+config BR2_PACKAGE_NETSNMP_CLIENTS
+ bool "clients"
+ default y
+ help
+ The net-snmp clients (snmpget, snmpwalk, etc).
+
config BR2_PACKAGE_NETSNMP_ENABLE_MIBS
bool "Install MIB files on target and enable MIB loading code"
default y
NETSNMP_CONF_OPTS += --disable-debugging
endif
+ifeq ($(BR2_PACKAGE_NETSNMP_SERVER),y)
+ NETSNMP_CONF_OPTS += --enable-agent
+else
+ NETSNMP_CONF_OPTS += --disable-agent
+endif
+
+ifeq ($(BR2_PACKAGE_NETSNMP_CLIENTS),y)
+ NETSNMP_CONF_OPTS += --enable-applications
+else
+ NETSNMP_CONF_OPTS += --disable-applications
+endif
+
# Remove IPv6 MIBs if there's no IPv6
ifneq ($(BR2_INET_IPV6),y)
define NETSNMP_REMOVE_MIBS_IPV6
NETSNMP_POST_INSTALL_TARGET_HOOKS += NETSNMP_REMOVE_BLOAT_MIBS
+ifeq ($(BR2_PACKAGE_NETSNMP_SERVER),y)
define NETSNMP_INSTALL_INIT_SYSV
$(INSTALL) -D -m 0755 package/netsnmp/S59snmpd \
$(TARGET_DIR)/etc/init.d/S59snmpd
endef
+endif
define NETSNMP_STAGING_NETSNMP_CONFIG_FIXUP
$(SED) "s,^includedir=.*,includedir=\'$(STAGING_DIR)/usr/include\',g" \