mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
k3conf: add diagnostic tool for K3 platforms
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
24
recipes-devtools/k3conf/k3conf_git.bb
Normal file
24
recipes-devtools/k3conf/k3conf_git.bb
Normal file
@@ -0,0 +1,24 @@
|
||||
SUMMARY = "Diagnostic tool for TI K3 processors"
|
||||
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://common/k3conf.c;beginline=1;endline=34;md5=37f4e460bd8501c6f02ce71f02bc7ccf"
|
||||
|
||||
PV = "0.1+git${SRCPV}"
|
||||
|
||||
COMPATIBLE_MACHINE = "k3"
|
||||
|
||||
BRANCH ?= "master"
|
||||
SRCREV = "9199c3a3b6ec5603a2c4283410b4761e79e81e82"
|
||||
|
||||
SRC_URI = "git://git.ti.com/k3conf/k3conf.git;protocol=git;branch=${BRANCH}"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_compile () {
|
||||
oe_runmake CC="${CC}" CROSS_COMPILE=${TARGET_PREFIX} all
|
||||
}
|
||||
|
||||
do_install () {
|
||||
install -d ${D}${bindir}
|
||||
install ${S}/k3conf ${D}${bindir}
|
||||
}
|
||||
Reference in New Issue
Block a user