diff mbox

[2/2] ptpd2: new package

Message ID 1367944785-27159-2-git-send-email-gustavo@zacarias.com.ar
State Accepted
Commit 5b190e6b6d2f98dae54fb92191000fa9a66dd79e
Headers show

Commit Message

Gustavo Zacarias May 7, 2013, 4:39 p.m. UTC
Add the ptpd2 package, handles the IEEE 1588-2008 spec which is not
backward compatible to IEEE 1588-2002.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/Config.in       |  1 +
 package/ptpd2/Config.in |  7 +++++++
 package/ptpd2/S65ptpd2  | 29 +++++++++++++++++++++++++++++
 package/ptpd2/ptpd2.mk  | 26 ++++++++++++++++++++++++++
 4 files changed, 63 insertions(+)
 create mode 100644 package/ptpd2/Config.in
 create mode 100644 package/ptpd2/S65ptpd2
 create mode 100644 package/ptpd2/ptpd2.mk

Comments

Baruch Siach May 7, 2013, 5:43 p.m. UTC | #1
Hi Gustavo,

On Tue, May 07, 2013 at 01:39:45PM -0300, Gustavo Zacarias wrote:
> Add the ptpd2 package, handles the IEEE 1588-2008 spec which is not
> backward compatible to IEEE 1588-2002.
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

[snip]

> +config BR2_PACKAGE_PTPD2
> +	bool "ptpd2"
> +	help
> +	  The PTP daemon (PTPd) implements the Precision Time protocol
> +	  (PTP) as defined by the IEEE-1588-2008.

Please mention here also that this package is not compatible with IEEE 
1588-2002, and that the ptpd should be used instead.

baurch
Gustavo Zacarias May 7, 2013, 9:55 p.m. UTC | #2
On 05/07/2013 02:43 PM, Baruch Siach wrote:

>> +config BR2_PACKAGE_PTPD2
>> +	bool "ptpd2"
>> +	help
>> +	  The PTP daemon (PTPd) implements the Precision Time protocol
>> +	  (PTP) as defined by the IEEE-1588-2008.
> 
> Please mention here also that this package is not compatible with IEEE 
> 1588-2002, and that the ptpd should be used instead.

One would assume people know which standard they're targetting, the
incompatibility is inherent in the protocol, not the daemon.
I just made it clear in the commit so that people wouldn't think i'm
crazy by doing two versions of the (presumably) same package.
I'm crazy for other reasons though :)
Regards.
diff mbox

Patch

diff --git a/package/Config.in b/package/Config.in
index 7546d51..ca50349 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -754,6 +754,7 @@  source "package/pptp-linux/Config.in"
 source "package/proftpd/Config.in"
 source "package/proxychains-ng/Config.in"
 source "package/ptpd/Config.in"
+source "package/ptpd2/Config.in"
 source "package/quagga/Config.in"
 source "package/radvd/Config.in"
 source "package/rp-pppoe/Config.in"
diff --git a/package/ptpd2/Config.in b/package/ptpd2/Config.in
new file mode 100644
index 0000000..bf26453
--- /dev/null
+++ b/package/ptpd2/Config.in
@@ -0,0 +1,7 @@ 
+config BR2_PACKAGE_PTPD2
+	bool "ptpd2"
+	help
+	  The PTP daemon (PTPd) implements the Precision Time protocol
+	  (PTP) as defined by the IEEE-1588-2008.
+
+	  http://ptpd.sourceforge.net/
diff --git a/package/ptpd2/S65ptpd2 b/package/ptpd2/S65ptpd2
new file mode 100644
index 0000000..7d4ee7f
--- /dev/null
+++ b/package/ptpd2/S65ptpd2
@@ -0,0 +1,29 @@ 
+#!/bin/sh
+#
+# Start ptpd2
+#
+
+case "$1" in
+  start)
+	echo -n "Starting ptpd2: "
+	start-stop-daemon -S -q -x /usr/sbin/ptpd2 -- -g
+	if [ $? != 0 ]; then
+		echo "FAILED"
+		exit 1
+	else
+		echo "OK"
+	fi
+	;;
+  stop)
+	echo -n "Stopping ptpd2: "
+	start-stop-daemon -K -q -x /usr/sbin/ptpd2
+	echo "OK"
+	;;
+  restart|reload)
+	;;
+  *)
+	echo "Usage: $0 {start|stop|restart}"
+	exit 1
+esac
+
+exit $?
diff --git a/package/ptpd2/ptpd2.mk b/package/ptpd2/ptpd2.mk
new file mode 100644
index 0000000..04a0070
--- /dev/null
+++ b/package/ptpd2/ptpd2.mk
@@ -0,0 +1,26 @@ 
+#############################################################
+#
+# ptpd2
+#
+#############################################################
+
+PTPD2_VERSION = 2.2.2
+PTPD2_SITE = http://downloads.sourceforge.net/project/ptpd/ptpd/$(PTPD2_VERSION)
+PTPD2_SOURCE = ptpd-$(PTPD2_VERSION).tar.gz
+PTPD2_LICENSE = BSD-2c
+PTPD2_LICENSE_FILES = COPYRIGHT
+
+define PTPD2_BUILD_CMDS
+	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)/src
+endef
+
+define PTPD2_INSTALL_TARGET_CMDS
+	$(INSTALL) -m 755 -D $(@D)/src/ptpd2 $(TARGET_DIR)/usr/sbin/ptpd2
+endef
+
+define PTPD2_INSTALL_INIT_SYSV
+	$(INSTALL) -m 755 -D package/ptpd2/S65ptpd2 \
+		$(TARGET_DIR)/etc/init.d/S65ptpd2
+endef
+
+$(eval $(generic-package))