mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 21:24:31 +04:00
linuxptp: fix build failure
Build is failing because HWTSTAMP_TX_ONESTEP_P2P is defined anymore on linux net_tstamp.h. Moreover, the usual way of linuxptp build is looking for system includes unless user defines differently. That also was tried to fix. PKG_RELEASE bumped to 3. Signed-off-by: Paulo Machado <pffmachado@yahoo.com>
This commit is contained in:
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=linuxptp
|
PKG_NAME:=linuxptp
|
||||||
PKG_VERSION:=2.0
|
PKG_VERSION:=2.0
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
||||||
PKG_SOURCE_URL:=@SF/$(PKG_NAME)/v$(PKG_VERSION)
|
PKG_SOURCE_URL:=@SF/$(PKG_NAME)/v$(PKG_VERSION)
|
||||||
@@ -20,6 +20,7 @@ PKG_LICENSE:=GPL-2.0
|
|||||||
PKG_LICENSE_FILES:=COPYING
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
define Package/linuxptp
|
define Package/linuxptp
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
@@ -39,7 +40,8 @@ endef
|
|||||||
EXTRA_CFLAGS += -DHAVE_CLOCK_ADJTIME -DHAVE_POSIX_SPAWN -DHAVE_ONESTEP_SYNC
|
EXTRA_CFLAGS += -DHAVE_CLOCK_ADJTIME -DHAVE_POSIX_SPAWN -DHAVE_ONESTEP_SYNC
|
||||||
|
|
||||||
MAKE_VARS += \
|
MAKE_VARS += \
|
||||||
EXTRA_CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CFLAGS)"
|
EXTRA_CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CFLAGS)" \
|
||||||
|
KBUILD_OUTPUT="$(LINUX_DIR)"
|
||||||
|
|
||||||
define Package/linuxptp/install
|
define Package/linuxptp/install
|
||||||
$(INSTALL_DIR) $(1)/usr/sbin
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||||||
|
|||||||
11
net/linuxptp/patches/001-fix_kbuild_output.patch
Normal file
11
net/linuxptp/patches/001-fix_kbuild_output.patch
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
--- a/incdefs.sh
|
||||||
|
+++ b/incdefs.sh
|
||||||
|
@@ -62,7 +62,7 @@ user_flags()
|
||||||
|
kernel_flags()
|
||||||
|
{
|
||||||
|
prefix=""
|
||||||
|
- tstamp=/usr/include/linux/net_tstamp.h
|
||||||
|
+ tstamp=/include/uapi/linux/net_tstamp.h
|
||||||
|
|
||||||
|
if [ "x$KBUILD_OUTPUT" != "x" ]; then
|
||||||
|
# With KBUILD_OUTPUT set, we are building against
|
||||||
Reference in New Issue
Block a user