|
From: <abe...@us...> - 2012-08-30 04:47:17
|
Revision: 5652
http://astlinux.svn.sourceforge.net/astlinux/?rev=5652&view=rev
Author: abelbeck
Date: 2012-08-30 04:47:10 +0000 (Thu, 30 Aug 2012)
Log Message:
-----------
fping, new package, required for zabbix_proxy
Modified Paths:
--------------
branches/1.0/astlinux.config
branches/1.0/astlinux18.config
branches/1.0/initrd.config
branches/1.0/package/Config.in
branches/1.0/package/zabbix/Config.in
branches/1.0/package/zabbix/zabbix.mk
branches/1.0/project/astlinux/target_skeleton/etc/protocols
branches/1.0/runnix-uclibc.config
branches/1.0/runnix.config
Added Paths:
-----------
branches/1.0/package/fping/
branches/1.0/package/fping/Config.in
branches/1.0/package/fping/fping.mk
Modified: branches/1.0/astlinux.config
===================================================================
--- branches/1.0/astlinux.config 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/astlinux.config 2012-08-30 04:47:10 UTC (rev 5652)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5644-dirty Configuration
-# Tue Aug 28 11:23:58 2012
+# Buildroot 2011.08-svn5651-dirty Configuration
+# Wed Aug 29 23:41:25 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -658,6 +658,7 @@
# BR2_PACKAGE_DROPBEAR is not set
# BR2_PACKAGE_EBTABLES is not set
BR2_PACKAGE_ETHTOOL=y
+# BR2_PACKAGE_FPING is not set
# BR2_PACKAGE_HOSTAPD is not set
# BR2_PACKAGE_IFPLUGD is not set
BR2_PACKAGE_IFTOP=y
Modified: branches/1.0/astlinux18.config
===================================================================
--- branches/1.0/astlinux18.config 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/astlinux18.config 2012-08-30 04:47:10 UTC (rev 5652)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5644-dirty Configuration
-# Tue Aug 28 11:23:20 2012
+# Buildroot 2011.08-svn5651-dirty Configuration
+# Wed Aug 29 23:41:26 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -652,6 +652,7 @@
# BR2_PACKAGE_DROPBEAR is not set
# BR2_PACKAGE_EBTABLES is not set
BR2_PACKAGE_ETHTOOL=y
+# BR2_PACKAGE_FPING is not set
# BR2_PACKAGE_HOSTAPD is not set
# BR2_PACKAGE_IFPLUGD is not set
BR2_PACKAGE_IFTOP=y
Modified: branches/1.0/initrd.config
===================================================================
--- branches/1.0/initrd.config 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/initrd.config 2012-08-30 04:47:10 UTC (rev 5652)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5615-dirty Configuration
-# Tue Jul 17 18:01:28 2012
+# Buildroot 2011.08-svn5651-dirty Configuration
+# Wed Aug 29 23:41:32 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -555,6 +555,7 @@
# BR2_PACKAGE_DROPBEAR is not set
# BR2_PACKAGE_EBTABLES is not set
# BR2_PACKAGE_ETHTOOL is not set
+# BR2_PACKAGE_FPING is not set
# BR2_PACKAGE_HOSTAPD is not set
# BR2_PACKAGE_IFPLUGD is not set
# BR2_PACKAGE_IFTOP is not set
Modified: branches/1.0/package/Config.in
===================================================================
--- branches/1.0/package/Config.in 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/package/Config.in 2012-08-30 04:47:10 UTC (rev 5652)
@@ -440,6 +440,7 @@
source "package/dropbear/Config.in"
source "package/ebtables/Config.in"
source "package/ethtool/Config.in"
+source "package/fping/Config.in"
source "package/hostapd/Config.in"
source "package/ifplugd/Config.in"
source "package/iftop/Config.in"
Added: branches/1.0/package/fping/Config.in
===================================================================
--- branches/1.0/package/fping/Config.in (rev 0)
+++ branches/1.0/package/fping/Config.in 2012-08-30 04:47:10 UTC (rev 5652)
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_FPING
+ bool "fping"
+ default n
+ help
+ fping is a program to send ICMP echo probes to network hosts, similar to ping,
+ but much better performing when pinging multiple hosts. fping has a very
+ long history: Roland Schemers did publish a first version of it in 1992 and it has
+ established itself since then as a standard tool for network diagnostics and statistics.
+
+ http://fping.org/
+
Added: branches/1.0/package/fping/fping.mk
===================================================================
--- branches/1.0/package/fping/fping.mk (rev 0)
+++ branches/1.0/package/fping/fping.mk 2012-08-30 04:47:10 UTC (rev 5652)
@@ -0,0 +1,24 @@
+#############################################################
+#
+# fping
+#
+#############################################################
+FPING_VERSION = 3.3
+FPING_SITE = http://fping.org/dist
+FPING_SOURCE = fping-$(FPING_VERSION).tar.gz
+
+FPING_CONF_OPT = \
+ --enable-ipv6
+
+define FPING_INSTALL_TARGET_CMDS
+ # Must set SUID for zabbix user
+ $(INSTALL) -D -m 4711 $(@D)/src/fping $(TARGET_DIR)/usr/sbin/
+ $(INSTALL) -D -m 4711 $(@D)/src/fping6 $(TARGET_DIR)/usr/sbin/
+endef
+
+define FPING_UNINSTALL_TARGET_CMDS
+ rm -f $(TARGET_DIR)/usr/sbin/fping
+ rm -f $(TARGET_DIR)/usr/sbin/fping6
+endef
+
+$(eval $(call AUTOTARGETS,package,fping))
Modified: branches/1.0/package/zabbix/Config.in
===================================================================
--- branches/1.0/package/zabbix/Config.in 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/package/zabbix/Config.in 2012-08-30 04:47:10 UTC (rev 5652)
@@ -11,6 +11,7 @@
default n
depends on BR2_PACKAGE_ZABBIX
select BR2_PACKAGE_SQLITE
+ select BR2_PACKAGE_FPING
help
Zabbix proxy to be used with Zabbix Monitoring Solution
Modified: branches/1.0/package/zabbix/zabbix.mk
===================================================================
--- branches/1.0/package/zabbix/zabbix.mk 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/package/zabbix/zabbix.mk 2012-08-30 04:47:10 UTC (rev 5652)
@@ -14,7 +14,7 @@
--enable-ipv6
ifeq ($(strip $(BR2_PACKAGE_ZABBIX_PROXY)),y)
-ZABBIX_DEPENDENCIES += sqlite
+ZABBIX_DEPENDENCIES += sqlite fping
ZABBIX_CONF_OPT += \
--enable-proxy \
--with-sqlite3="$(STAGING_DIR)/usr"
Modified: branches/1.0/project/astlinux/target_skeleton/etc/protocols
===================================================================
--- branches/1.0/project/astlinux/target_skeleton/etc/protocols 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/project/astlinux/target_skeleton/etc/protocols 2012-08-30 04:47:10 UTC (rev 5652)
@@ -6,3 +6,4 @@
gre 47 GRE # Generic Routing Encapsulation
esp 50 ESP # Encap Security Payload
ah 51 AH # Authentication Header
+ipv6-icmp 58 IPv6-ICMP # ICMP for IPv6
Modified: branches/1.0/runnix-uclibc.config
===================================================================
--- branches/1.0/runnix-uclibc.config 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/runnix-uclibc.config 2012-08-30 04:47:10 UTC (rev 5652)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5615-dirty Configuration
-# Tue Jul 17 18:01:26 2012
+# Buildroot 2011.08-svn5651-dirty Configuration
+# Wed Aug 29 23:41:29 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -840,6 +840,7 @@
# ebtables requires a toolchain with IPv6 support
#
# BR2_PACKAGE_ETHTOOL is not set
+# BR2_PACKAGE_FPING is not set
# BR2_PACKAGE_HOSTAPD is not set
# BR2_PACKAGE_IFPLUGD is not set
# BR2_PACKAGE_IFTOP is not set
Modified: branches/1.0/runnix.config
===================================================================
--- branches/1.0/runnix.config 2012-08-29 19:12:35 UTC (rev 5651)
+++ branches/1.0/runnix.config 2012-08-30 04:47:10 UTC (rev 5652)
@@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
-# Buildroot 2011.08-svn5615-dirty Configuration
-# Tue Jul 17 18:01:24 2012
+# Buildroot 2011.08-svn5651-dirty Configuration
+# Wed Aug 29 23:41:28 2012
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
@@ -585,6 +585,7 @@
BR2_PACKAGE_DROPBEAR_SMALL=y
# BR2_PACKAGE_EBTABLES is not set
# BR2_PACKAGE_ETHTOOL is not set
+# BR2_PACKAGE_FPING is not set
# BR2_PACKAGE_HOSTAPD is not set
# BR2_PACKAGE_IFPLUGD is not set
# BR2_PACKAGE_IFTOP is not set
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|