Passes all 49 of buildroot's build tests with support/scripts/test-pk. Append below is a buildroot patch for exercising the build. This patch was adapted from:
http://lists.busybox.net/pipermail/buildroot/2017-May/192051.html I changed the source to use git directly and removed - the DEVELOPERS hunk (which no longer applies, fix is trivial) - the patches for linuxptp, no longer necessary - the broken LINUXPTP_INSTALL_INIT_SYSV macro Richard Cochran (1): Fix build when using uClinux. missing.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) ---8<--- diff --git a/package/Config.in b/package/Config.in index d57813c5c..200ae009d 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1597,6 +1597,7 @@ menu "Networking applications" source "package/links/Config.in" source "package/linphone/Config.in" source "package/linux-zigbee/Config.in" + source "package/linuxptp/Config.in" source "package/lldpd/Config.in" source "package/lrzsz/Config.in" source "package/macchanger/Config.in" diff --git a/package/linuxptp/Config.in b/package/linuxptp/Config.in new file mode 100644 index 000000000..a5604ed24 --- /dev/null +++ b/package/linuxptp/Config.in @@ -0,0 +1,13 @@ +config BR2_PACKAGE_LINUXPTP + bool "linuxptp" + help + The Linux PTP Project is the Precision Time Protocol + implementation according to IEEE standard 1588 for Linux. + + The dual design goals are to provide a robust implementation + of the standard and to use the most relevant and modern + Application Programming Interfaces (API) offered by the Linux + kernel. Supporting legacy APIs and other platforms is not a + goal. + + http://linuxptp.sourceforge.net/ diff --git a/package/linuxptp/S65linuxptp b/package/linuxptp/S65linuxptp new file mode 100755 index 000000000..46b8921fd --- /dev/null +++ b/package/linuxptp/S65linuxptp @@ -0,0 +1,46 @@ +#!/bin/sh +# +# Start linuxptp +# + +start() { + printf "Starting linuxptp daemon: " + start-stop-daemon -S -b -q -p /var/run/linuxptp-ptp4l.pid \ + -x /usr/sbin/ptp4l -- -f /etc/linuxptp.cfg + [ $? = 0 ] && echo "OK" || echo "FAIL" + + printf "Starting linuxptp system clock synchronization: " + start-stop-daemon -S -b -q -p /var/run/linuxptp-phc2sys.pid \ + -x /usr/sbin/phc2sys -- -s eth0 -c CLOCK_REALTIME -w -S 1.0 + [ $? = 0 ] && echo "OK" || echo "FAIL" +} + +stop() { + printf "Stopping linuxptp system clock synchronization: " + start-stop-daemon -K -q -p /var/run/linuxptp-phc2sys.pid \ + -x /usr/sbin/phc2sys + echo "OK" + + printf "Stopping linuxptp daemon: " + start-stop-daemon -K -q -p /var/run/linuxptp-ptp4l.pid \ + -x /usr/sbin/ptp4l + echo "OK" +} + +case "$1" in + start) + start + ;; + stop) + stop + ;; + restart|reload) + stop + start + ;; + *) + echo "Usage: $0 {start|stop|restart}" + exit 1 +esac + +exit $? diff --git a/package/linuxptp/linuxptp-system-clock.service b/package/linuxptp/linuxptp-system-clock.service new file mode 100644 index 000000000..73272542c --- /dev/null +++ b/package/linuxptp/linuxptp-system-clock.service @@ -0,0 +1,11 @@ +[Unit] +Description=Precision Time Protocol system clock synchronization +After=syslog.target network.target + +[Service] +ExecStart=/usr/sbin/phc2sys -s /dev/ptp0 -c CLOCK_REALTIME -w -S 1.0 +Restart=always + +[Install] +WantedBy=multi-user.target +WantedBy=linuxptp.service diff --git a/package/linuxptp/linuxptp.cfg b/package/linuxptp/linuxptp.cfg new file mode 100644 index 000000000..f9d02e8d9 --- /dev/null +++ b/package/linuxptp/linuxptp.cfg @@ -0,0 +1,19 @@ +# LinuxPTP configuration file for synchronizing the system clock to +# a remote PTP master in slave-only mode. +# +# By default synchronize time in slave-only mode using UDP and hardware time +# stamps on eth0. If the difference to master is >1.0 second correct by +# stepping the clock instead of adjusting the frequency. +# +# If you change the configuration don't forget to update the phc2sys +# parameters accordingly in linuxptp-system-clock.service (systemd) +# or the linuxptp SysV init script. + +[global] +slaveOnly 1 +delay_mechanism Auto +network_transport UDPv4 +time_stamping hardware +step_threshold 1.0 + +[eth0] diff --git a/package/linuxptp/linuxptp.hash b/package/linuxptp/linuxptp.hash new file mode 100644 index 000000000..1ac94434d --- /dev/null +++ b/package/linuxptp/linuxptp.hash @@ -0,0 +1,2 @@ +# Locally computed: +sha256 fa8e00f6ec73cefa7bb313dce7f60dfe5eb9e2bde3353594e9ac18edc93e5165 linuxptp-1.8.tgz diff --git a/package/linuxptp/linuxptp.mk b/package/linuxptp/linuxptp.mk new file mode 100644 index 000000000..44f56f98d --- /dev/null +++ b/package/linuxptp/linuxptp.mk @@ -0,0 +1,39 @@ +################################################################################ +# +# Linux PTP +# +################################################################################ + +LINUXPTP_SITE = git://git.code.sf.net/p/linuxptp/code +LINUXPTP_SITE_METHOD = git +LINUXPTP_VERSION = 8d024ed8bf198bd31ae86d21a58f4e270b6d5469 + +LINUXPTP_LICENSE = GPL-2.0+ +LINUXPTP_LICENSE_FILES = COPYING + +define LINUXPTP_BUILD_CMDS + $(TARGET_MAKE_ENV) $(MAKE) KBUILD_OUTPUT=$(TARGET_DIR) \ + EXTRA_CFLAGS="$(TARGET_CFLAGS)" EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \ + CC="$(TARGET_CC)" \ + -C $(@D) all +endef + +define LINUXPTP_INSTALL_TARGET_CMDS + $(TARGET_MAKE_ENV) $(MAKE) prefix=/usr DESTDIR=$(TARGET_DIR) \ + $(TARGET_CONFIGURE_OPTS) -C $(@D) install + + $(INSTALL) -D -m 644 $(LINUXPTP_PKGDIR)/linuxptp.cfg \ + $(TARGET_DIR)/etc/linuxptp.cfg +endef + +define LINUXPTP_INSTALL_INIT_SYSTEMD + $(INSTALL) -D -m 644 $(LINUXPTP_PKGDIR)/linuxptp.service \ + $(TARGET_DIR)/usr/lib/systemd/system/linuxptp.service + $(INSTALL) -D -m 644 $(LINUXPTP_PKGDIR)/linuxptp-system-clock.service \ + $(TARGET_DIR)/usr/lib/systemd/system/linuxptp-system-clock.service + mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants + ln -sf ../../../../usr/lib/systemd/system/linuxptp.service \ + $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/linuxptp.service +endef + +$(eval $(generic-package)) diff --git a/package/linuxptp/linuxptp.service b/package/linuxptp/linuxptp.service new file mode 100644 index 000000000..f69043063 --- /dev/null +++ b/package/linuxptp/linuxptp.service @@ -0,0 +1,11 @@ +[Unit] +Description=Precision Time Protocol daemon +After=syslog.target network.target +Wants=linuxptp-system-clock.service + +[Service] +ExecStart=/usr/sbin/ptp4l -f /etc/linuxptp.cfg +Restart=always + +[Install] +WantedBy=multi-user.target -- 2.11.0 ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Linuxptp-devel mailing list Linuxptp-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linuxptp-devel