diff options
author | Denys Dmytriyenko <denys@ti.com> | 2020-02-18 03:20:57 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2020-02-17 21:05:41 +0000 |
commit | 25ae004da627fde51a7b6678c390e0ffa7ddf5fe (patch) | |
tree | 1cf3c2b71764ced8f1585f2de7fde6d63c5a51e5 | |
parent | 1f3016d3e9fbd22e0fa0eddb09aa609e4e76dc54 (diff) | |
download | meta-ti-25ae004da627fde51a7b6678c390e0ffa7ddf5fe.tar.gz |
k3conf: add diagnostic tool for K3 platforms
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-devtools/k3conf/k3conf_git.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-devtools/k3conf/k3conf_git.bb b/recipes-devtools/k3conf/k3conf_git.bb new file mode 100644 index 00000000..52c2fcf6 --- /dev/null +++ b/recipes-devtools/k3conf/k3conf_git.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "Diagnostic tool for TI K3 processors" | ||
2 | |||
3 | LICENSE = "BSD-3-Clause" | ||
4 | LIC_FILES_CHKSUM = "file://common/k3conf.c;beginline=1;endline=34;md5=37f4e460bd8501c6f02ce71f02bc7ccf" | ||
5 | |||
6 | PV = "0.1+git${SRCPV}" | ||
7 | |||
8 | COMPATIBLE_MACHINE = "k3" | ||
9 | |||
10 | BRANCH ?= "master" | ||
11 | SRCREV = "9199c3a3b6ec5603a2c4283410b4761e79e81e82" | ||
12 | |||
13 | SRC_URI = "git://git.ti.com/k3conf/k3conf.git;protocol=git;branch=${BRANCH}" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | do_compile () { | ||
18 | oe_runmake CC="${CC}" CROSS_COMPILE=${TARGET_PREFIX} all | ||
19 | } | ||
20 | |||
21 | do_install () { | ||
22 | install -d ${D}${bindir} | ||
23 | install ${S}/k3conf ${D}${bindir} | ||
24 | } | ||