diff options
author | Denys Dmytriyenko <denys@konsulko.com> | 2022-02-22 04:13:54 +0000 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2022-02-22 12:01:39 -0600 |
commit | 600a51055a1b443f36f6e6421e3165ddacb2ba86 (patch) | |
tree | c7855b1891b5db07ff5244d12cf99d19eac31c76 /meta-ti-extras | |
parent | a609bb4b644a2644188b11a11dc101f1e20babff (diff) | |
download | meta-ti-600a51055a1b443f36f6e6421e3165ddacb2ba86.tar.gz |
meta-ti: move cuia to meta-ti-extras
Move TI Unified Instrumentation Architecture in C (cUIA) to meta-ti-extras under
recipes-devtools.
Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Diffstat (limited to 'meta-ti-extras')
-rw-r--r-- | meta-ti-extras/recipes-devtools/cuia/cuia_1.0.0.13.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-ti-extras/recipes-devtools/cuia/cuia_1.0.0.13.bb b/meta-ti-extras/recipes-devtools/cuia/cuia_1.0.0.13.bb new file mode 100644 index 00000000..1cda366d --- /dev/null +++ b/meta-ti-extras/recipes-devtools/cuia/cuia_1.0.0.13.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | DESCRIPTION = "TI Unified Instrumentation Architecture in C (cUIA)" | ||
2 | LICENSE = "BSD-3-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://cuia_${CUIA_PV}_manifest.html;md5=0eea94e3bb94de4ddee77653eba1c7c5" | ||
4 | |||
5 | CUIA_PV = "1_00_00_13" | ||
6 | CUIA_PVExtra = "" | ||
7 | |||
8 | SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_ccstudio/UIA/SCMCSDK/cuia_${CUIA_PV}${CUIA_PVExtra}.tar.gz;name=cuia" | ||
9 | SRC_URI[cuia.md5sum] = "ef53989ac70c191841cd656cdc8770be" | ||
10 | SRC_URI[cuia.sha256sum] = "f16d138a9146fdc7d52cba77bd30596da65835f6ffe4092baf2b33d1c1a4fb0d" | ||
11 | |||
12 | S = "${WORKDIR}/cuia_${CUIA_PV}${CUIA_PVExtra}" | ||
13 | |||
14 | CLEANBROKEN = "1" | ||
15 | |||
16 | do_compile () { | ||
17 | cd ${S} | ||
18 | oe_runmake clean | ||
19 | oe_runmake all | ||
20 | } | ||
21 | |||
22 | do_install() { | ||
23 | cd ${S} | ||
24 | oe_runmake DESTDIR=${D} libdir=${libdir} includedir=${includedir} install | ||
25 | } | ||
26 | |||
27 | COMPATIBLE_HOST ?= "null" | ||
28 | COMPATIBLE_HOST:ti-soc = "(.*)" | ||
29 | |||
30 | INSANE_SKIP:${PN} += "textrel installed-vs-shipped" | ||