mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-04 05:04:39 +02:00
Adjust incdefs.sh to use cross tools to poke for system functionality Re-enable using incdefs.sh export KBUILD_OUTPUT to point to recipe sysroot Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
868 B
BlitzBasic
24 lines
868 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/v${PV}/linuxptp-${PV}.tgz \
|
|
file://build-Allow-CC-and-prefix-to-be-overriden.patch \
|
|
file://Use-cross-cpp-in-incdefs.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "1318805702eb6d59f9f247e1dd5ce12a"
|
|
SRC_URI[sha256sum] = "d74ceca722c75bfff53c633425f926dd48eb04f4a089451b855155c016d15785"
|
|
|
|
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}
|
|
}
|