menu "net-snmp - Open source SNMP (Simple Network Management Protocol) implementation"
-config BR2_PACKAGE_NET_SNMP
+config BR2_COMPILE_NET_SNMP
bool
default n
- depends BR2_PACKAGE_LIBNETSNMP
+ depends BR2_PACKAGE_LIBNETSNMP || BR2_PACKAGE_SNMP_UTILS || BR2_PACKAGE_SNMPD || BR2_PACKAGE_SNMPD_STATIC
+ select BR2_PACKAGE_LIBELF
config BR2_PACKAGE_LIBNETSNMP
prompt "libnetsnmp - SNMP shared libraries"
tristate
default m if CONFIG_DEVEL
- select BR2_PACKAGE_NET_SNMP
- select BR2_PACKAGE_LIBELF
+ select BR2_COMPILE_NET_SNMP
help
Simple Network Management Protocol (SNMP) is a widely used
protocol for monitoring the health and welfare of network
This package contains shared libraries, needed by other programs.
+config BR2_PACKAGE_SNMP_UTILS
+ prompt "snmp-utils - SNMP client utilities"
+ tristate
+ select BR2_COMPILE_NET_SNMP
+ select BR2_PACKAGE_LIBNETSNMP
+ default m if CONFIG_DEVEL
+ 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
+ like UPSs. Net-SNMP is a suite of applications used to implement
+ SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
+
+ http://www.net-snmp.org/
+
+ This package contains the SNMP client utilities.
+
+
config BR2_PACKAGE_SNMPD
prompt "snmpd - SNMP agent"
tristate
+ select BR2_COMPILE_NET_SNMP
select BR2_PACKAGE_LIBNETSNMP
default m if CONFIG_DEVEL
help
http://www.net-snmp.org/
- This package contains the SNMP agent.
+ This package contains the SNMP agent, dynamically linked.
-config BR2_PACKAGE_SNMP_UTILS
- prompt "snmp-utils - SNMP client utilities"
+config BR2_PACKAGE_SNMPD_STATIC
+ prompt "snmpd-static - SNMP agent (static)"
tristate
- select BR2_PACKAGE_LIBNETSNMP
+ select BR2_COMPILE_NET_SNMP
default m if CONFIG_DEVEL
help
Simple Network Management Protocol (SNMP) is a widely used
http://www.net-snmp.org/
- This package contains the SNMP client utilities.
+ This package contains the SNMP agent, statically linked.
endmenu
$(eval $(call PKG_template,LIBNETSNMP,libnetsnmp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(eval $(call PKG_template,SNMPD,snmpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+$(eval $(call PKG_template,SNMPD_STATIC,snmpd-static,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(eval $(call PKG_template,SNMP_UTILS,snmp-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(PKG_BUILD_DIR)/.configured:
- (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
+ ( cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
ac_cv_header_pcap_h=no \
./configure \
- --target=$(GNU_TARGET_NAME) \
- --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) \
- --program-prefix="" \
- --program-suffix="" \
- --prefix=/usr \
- --exec-prefix=/usr \
- --bindir=/usr/bin \
- --datadir=/usr/share \
- --includedir=/usr/include \
- --infodir=/usr/share/info \
- --libdir=/usr/lib \
- --libexecdir=/usr/lib \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --sbindir=/usr/sbin \
- --sysconfdir=/etc \
- $(DISABLE_LARGEFILE) \
- $(DISABLE_NLS) \
- $(PKG_CONFIGURE_OPTIONS) \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --program-prefix="" \
+ --program-suffix="" \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --datadir=/usr/share \
+ --includedir=/usr/include \
+ --infodir=/usr/share/info \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --mandir=/usr/share/man \
+ --sbindir=/usr/sbin \
+ --sysconfdir=/etc \
+ $(DISABLE_LARGEFILE) \
+ $(DISABLE_NLS) \
+ $(PKG_CONFIGURE_OPTIONS) \
);
touch $@
$(MAKE) -C $(PKG_BUILD_DIR) \
INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
all install
+ ( cd $(PKG_INSTALL_DIR); mv ./usr/sbin/snmpd ./usr/sbin/snmpd-shared; )
+ifneq ($(BR2_PACKAGE_SNMPD_STATIC),)
+ ( cd $(PKG_BUILD_DIR); rm -f agent/snmpd; )
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib -static" \
+ INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
+ all install
+ ( cd $(PKG_INSTALL_DIR); mv ./usr/sbin/snmpd ./usr/sbin/snmpd-static; )
+endif
touch $@
$(IPKG_LIBNETSNMP):
install -d -m0755 $(IDIR_SNMPD)/etc/init.d
install -m0755 ./files/snmpd.init $(IDIR_SNMPD)/etc/init.d/snmpd
install -d -m0755 $(IDIR_SNMPD)/usr/sbin
- cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/snmpd $(IDIR_SNMPD)/usr/sbin/
+ install -m0755 $(PKG_INSTALL_DIR)/usr/sbin/snmpd-shared $(IDIR_SNMPD)/usr/sbin/snmpd
$(RSTRIP) $(IDIR_SNMPD)
$(IPKG_BUILD) $(IDIR_SNMPD) $(PACKAGE_DIR)
+$(IPKG_SNMPD_STATIC):
+ install -d -m0755 $(IDIR_SNMPD_STATIC)/etc/snmp
+ install -m0644 ./files/snmpd.conf $(IDIR_SNMPD_STATIC)/etc/snmp/snmpd.conf
+ install -d -m0755 $(IDIR_SNMPD_STATIC)/etc/default
+ install -m0644 ./files/snmpd.default $(IDIR_SNMPD_STATIC)/etc/default/snmpd
+ install -d -m0755 $(IDIR_SNMPD_STATIC)/etc/init.d
+ install -m0755 ./files/snmpd.init $(IDIR_SNMPD_STATIC)/etc/init.d/snmpd
+ install -d -m0755 $(IDIR_SNMPD_STATIC)/usr/sbin
+ install -m0755 $(PKG_INSTALL_DIR)/usr/sbin/snmpd-static $(IDIR_SNMPD_STATIC)/usr/sbin/snmpd
+ $(RSTRIP) $(IDIR_SNMPD_STATIC)
+ $(IPKG_BUILD) $(IDIR_SNMPD_STATIC) $(PACKAGE_DIR)
+
$(IPKG_SNMP_UTILS):
install -d -m0755 $(IDIR_SNMP_UTILS)/usr/bin
cp -fpR $(PKG_INSTALL_DIR)/usr/bin/snmp{get,set,status,test,trap,walk} $(IDIR_SNMP_UTILS)/usr/bin/