diff options
author | Ryan Eatmon <reatmon@ti.com> | 2023-08-30 13:20:54 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2023-08-30 15:30:57 -0500 |
commit | 00f7752723db4407739c115d7dc5a2e866f4f095 (patch) | |
tree | 659016634ba3b660fcf8a0d14961ed317b7cc8ec | |
parent | 89b6ea44107db414c2792dfb392aa424b2196d8a (diff) | |
download | meta-ti-00f7752723db4407739c115d7dc5a2e866f4f095.tar.gz |
k3conf: Update SRCREV and move to cmake
The SRCREV change corresponds to a commit that changes from make to
cmake for building k3conf, so we need to update the recipe as well.
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r-- | meta-ti-bsp/recipes-devtools/k3conf/k3conf_git.bb | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/meta-ti-bsp/recipes-devtools/k3conf/k3conf_git.bb b/meta-ti-bsp/recipes-devtools/k3conf/k3conf_git.bb index 2686810d..987055b0 100644 --- a/meta-ti-bsp/recipes-devtools/k3conf/k3conf_git.bb +++ b/meta-ti-bsp/recipes-devtools/k3conf/k3conf_git.bb | |||
@@ -3,22 +3,16 @@ SUMMARY = "Diagnostic tool for TI K3 processors" | |||
3 | LICENSE = "BSD-3-Clause" | 3 | LICENSE = "BSD-3-Clause" |
4 | LIC_FILES_CHKSUM = "file://common/k3conf.c;beginline=1;endline=34;md5=7154c0ffcd418064ffa528e34e70ca9d" | 4 | LIC_FILES_CHKSUM = "file://common/k3conf.c;beginline=1;endline=34;md5=7154c0ffcd418064ffa528e34e70ca9d" |
5 | 5 | ||
6 | inherit cmake | ||
7 | |||
6 | PV = "0.2+git${SRCPV}" | 8 | PV = "0.2+git${SRCPV}" |
7 | 9 | ||
8 | COMPATIBLE_MACHINE = "k3" | 10 | COMPATIBLE_MACHINE = "k3" |
9 | 11 | ||
10 | BRANCH ?= "master" | 12 | BRANCH ?= "master" |
11 | SRCREV = "81581afb405085755aea7744c1d196533e8094c4" | 13 | SRCREV = "859e1cc105a01a8a4a58318679f92e2135a03a99" |
12 | 14 | ||
13 | SRC_URI = "git://git.ti.com/git/k3conf/k3conf.git;protocol=https;branch=${BRANCH}" | 15 | SRC_URI = "git://git.ti.com/git/k3conf/k3conf.git;protocol=https;branch=${BRANCH}" |
14 | 16 | ||
15 | S = "${WORKDIR}/git" | 17 | S = "${WORKDIR}/git" |
16 | 18 | ||
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 | } | ||