diff options
| author | Alex Suykov <alex.suykov@gmail.com> | 2015-05-23 13:06:47 +0300 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-14 12:13:41 +0200 |
| commit | 6e060b9c83228e81ce61a8f326970e064982fa50 (patch) | |
| tree | df06b99651f017c61818f6949b9aec188eaf4661 | |
| parent | 9ad7b47c5ee1a69dc3540f1da75dce8b07f2c234 (diff) | |
| download | buildroot-6e060b9c83228e81ce61a8f326970e064982fa50.tar.gz buildroot-6e060b9c83228e81ce61a8f326970e064982fa50.zip | |
ptpd2: systemd support
Following package and sysv initscript naming scheme,
the service is "ptpd2" instead of just "ptpd" version 2.
[Thomas:
- use relative symlink instead of an absolute symlink
- remove the -s option, which redirects stdout, since systemd will
take care of it
- add the -g option, to be consistent with what the init script is
using.]
Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/ptpd2/ptpd2.mk | 8 | ||||
| -rw-r--r-- | package/ptpd2/ptpd2.service | 10 |
2 files changed, 18 insertions, 0 deletions
diff --git a/package/ptpd2/ptpd2.mk b/package/ptpd2/ptpd2.mk index e1d4f2754a..6b2e6bcaca 100644 --- a/package/ptpd2/ptpd2.mk +++ b/package/ptpd2/ptpd2.mk @@ -29,4 +29,12 @@ define PTPD2_INSTALL_INIT_SYSV $(TARGET_DIR)/etc/init.d/S65ptpd2 endef +define PTPD2_INSTALL_INIT_SYSTEMD + $(INSTALL) -D -m 644 package/ptpd2/ptpd2.service \ + $(TARGET_DIR)/usr/lib/systemd/system/ptpd2.service + mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants + ln -sf ../../../../usr/lib/systemd/system/ptpd2.service \ + $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/ptpd2.service +endef + $(eval $(autotools-package)) diff --git a/package/ptpd2/ptpd2.service b/package/ptpd2/ptpd2.service new file mode 100644 index 0000000000..66e71ce0a4 --- /dev/null +++ b/package/ptpd2/ptpd2.service @@ -0,0 +1,10 @@ +[Unit] +Description=Precision Time Protocol daemon +After=syslog.target network.target + +[Service] +ExecStart=/usr/sbin/ptpd2 -C -g +Restart=always + +[Install] +WantedBy=multi-user.target |

