mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
14958cdad1
* fix WARNING: linuxptp-3.1-r0 do_fetch: Failed to fetch URL http://sourceforge.net/projects/linuxptp/files/v3.1/linuxptp-3.1.tgz, attempting MIRRORS if available linuxptp-3.1.tgz replace by linuxptp-3.1.1.tgz * 3.1.1 release note Version 3.1.1 Fixes: CVE-2021-3570 linuxptp: missing length check of forwarded messages CVE-2021-3571 linuxptp: wrong length of one-step follow-up in transparent clock Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
24 lines
866 B
BlitzBasic
24 lines
866 B
BlitzBasic
DESCRIPTION = "Precision Time Protocol (PTP) according to IEEE standard 1588 for Linux"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
SRC_URI = "http://sourceforge.net/projects/linuxptp/files/v3.1/linuxptp-${PV}.tgz \
|
|
file://build-Allow-CC-and-prefix-to-be-overriden.patch \
|
|
file://Use-cross-cpp-in-incdefs.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "3b79ab5e77c5b5cf06bc1c8350d405bb"
|
|
SRC_URI[sha256sum] = "94d6855f9b7f2d8e9b0ca6d384e3fae6226ce6fc012dbad02608bdef3be1c0d9"
|
|
|
|
EXTRA_OEMAKE = "ARCH=${TARGET_ARCH} EXTRA_CFLAGS='${CFLAGS}'"
|
|
|
|
export KBUILD_OUTPUT="${RECIPE_SYSROOT}"
|
|
|
|
do_install () {
|
|
install -d ${D}/${bindir}
|
|
install -p ${S}/ptp4l ${D}/${bindir}
|
|
install -p ${S}/pmc ${D}/${bindir}
|
|
install -p ${S}/phc2sys ${D}/${bindir}
|
|
install -p ${S}/hwstamp_ctl ${D}/${bindir}
|
|
}
|