linuxptp: Upgrade to 2.0 release

Drop upstreamed patches

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2019-01-08 13:24:18 -08:00
parent c44679b494
commit 765418cc65
3 changed files with 2 additions and 66 deletions

View File

@ -1,26 +0,0 @@
From b36cafdbcbe2193f5b669e703c608e19e23f80a3 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 15 Jul 2017 11:16:42 -0700
Subject: [PATCH 3/4] include missing time.h for time_t
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
util.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util.h b/util.h
index e912f19..3c634c1 100644
--- a/util.h
+++ b/util.h
@@ -22,7 +22,7 @@
#include "ddt.h"
#include "ether.h"
-
+#include <time.h>
/**
* Table of human readable strings, one for each port state.
*/
--
2.13.3

View File

@ -1,36 +0,0 @@
From 3cd28aa771934d9165ff0d7e19932cde65de3e52 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 15 Jul 2017 11:16:57 -0700
Subject: [PATCH 4/4] Adjust include header sequence to avoid duplicate
definitions on musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
raw.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/raw.c b/raw.c
index f51c829..494ea7f 100644
--- a/raw.c
+++ b/raw.c
@@ -18,8 +18,6 @@
*/
#include <errno.h>
#include <fcntl.h>
-#include <linux/filter.h>
-#include <linux/if_ether.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <netinet/in.h>
@@ -32,6 +30,8 @@
#include <sys/types.h>
#include <unistd.h>
+#include <linux/filter.h>
+#include <linux/if_ether.h>
#include <linux/errqueue.h>
#include <linux/net_tstamp.h>
#include <linux/sockios.h>
--
2.13.3

View File

@ -5,12 +5,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
SRC_URI = "http://sourceforge.net/projects/linuxptp/files/v${PV}/linuxptp-${PV}.tgz \
file://build-Allow-CC-and-prefix-to-be-overriden.patch \
file://no-incdefs-using-host-headers.patch \
file://0003-include-missing-time.h-for-time_t.patch \
file://0004-Adjust-include-header-sequence-to-avoid-duplicate-de.patch \
"
SRC_URI[md5sum] = "5688cdfe57932273e1dbf35b3b97b9a0"
SRC_URI[sha256sum] = "fa8e00f6ec73cefa7bb313dce7f60dfe5eb9e2bde3353594e9ac18edc93e5165"
SRC_URI[md5sum] = "d8bb7374943bb747db7786ac26f17f11"
SRC_URI[sha256sum] = "0a24d9401e87d4af023d201e234d91127d82c350daad93432106284aa9459c7d"
EXTRA_OEMAKE = "ARCH=${TARGET_ARCH} \
EXTRA_CFLAGS='-D_GNU_SOURCE -DHAVE_CLOCK_ADJTIME -DHAVE_POSIX_SPAWN -DHAVE_ONESTEP_SYNC ${CFLAGS}'"