- linuxptp is an implementtation of precision time protocol (PTP) Signed-off-by: Sam Nelson <[email protected]> --- .../recipes-bsp/linuxptp/linuxptp_1.0.bb | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 meta-arago-extras/recipes-bsp/linuxptp/linuxptp_1.0.bb
diff --git a/meta-arago-extras/recipes-bsp/linuxptp/linuxptp_1.0.bb b/meta-arago-extras/recipes-bsp/linuxptp/linuxptp_1.0.bb new file mode 100755 index 0000000..c7482aa --- /dev/null +++ b/meta-arago-extras/recipes-bsp/linuxptp/linuxptp_1.0.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "This software is an implementation of the Precision Time Protocol (PTP) \ +according to IEEE standard 1588 for Linux" +HOMEPAGE = "http://linuxptp.sourceforge.net/" +SECTION = "console/network" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" +DEPENDS += "virtual/kernel" +PR = "r0" + +SRC_URI = "git://git.code.sf.net/p/linuxptp/code;protocol=git" + +SRCREV = "74e703727ec9b1c334c7bfbba9be1cabf4b7b461" + +S = "${WORKDIR}/git" + +inherit autotools + +STAGING_KERNEL_DIR = "${STAGING_DIR}/${MACHINE_ARCH}${TARGET_VENDOR}-${TARGET_OS}" +EXTRA_OEMAKE = "KBUILD_OUTPUT=${STAGING_KERNEL_DIR} CROSS_COMPILE=${TARGET_PREFIX} ARCH=${TARGET_ARCH}" + +do_install() { + install -d ${D}${bindir}/ + install -c -m 755 ${S}/ptp4l ${D}${bindir}/ +} + -- 1.7.9.5 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
