All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libaet: TI Emulation CTools AET library
@ 2017-08-28 14:32 Jacob Stiffler
  2017-08-28 15:06 ` Denys Dmytriyenko
  0 siblings, 1 reply; 2+ messages in thread
From: Jacob Stiffler @ 2017-08-28 14:32 UTC (permalink / raw)
  To: meta-ti

From: "Zhao, Yuan" <yuanzhao@ti.com>

The AETLIB library in CToolsLib collection provides programmatic
access to the Advanced Event Triggering capability on C6x processor
cores.

Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 recipes-ti/ctoolslib/libaet_git.bb | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 recipes-ti/ctoolslib/libaet_git.bb

diff --git a/recipes-ti/ctoolslib/libaet_git.bb b/recipes-ti/ctoolslib/libaet_git.bb
new file mode 100644
index 0000000..626ba92
--- /dev/null
+++ b/recipes-ti/ctoolslib/libaet_git.bb
@@ -0,0 +1,39 @@
+SUMMARY = "TI Emulation CTools AET library"
+DESCRIPTION = "The AETLIB library provides programmatic access to the Advanced Event Triggering capability on C6x processor cores"
+
+LICENSE = "BSD"
+
+PV = "4.19.0.0"
+
+LIC_FILES_CHKSUM = "file://../ctoolslib_manifest.html;md5=b7dd369a2e07ef9a71795ee5a9bd01bd"
+
+SRC_URI = "git://git.ti.com/sdo-emu/ctoolslib.git;protocol=git;branch=opencl_aetlib_build"
+SRCREV = "de7954abab0f0caa8a2c7b53095c30226d901a31"
+
+DEPENDS = "ti-cgt6x-native"
+PR = "r0"
+
+S = "${WORKDIR}/git/aet"
+
+DEVICE=""
+DEVICE_dra7xx = "DRA7xx"
+DEVICE_keystone = "C66AK2Hxx"
+
+EXTRA_OEMAKE = "C6X_C_DIR=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x/include"
+
+do_install() {
+    install -d ${D}${datadir}/ti/ctoolslib/aet
+    install -d ${D}${datadir}/ti/ctoolslib/aet/include
+    install -d ${D}${datadir}/ti/ctoolslib/aet/lib
+    cp -rP --preserve=mode,links,timestamps --no-preserve=ownership ${S}/include/* ${D}${datadir}/ti/ctoolslib/aet/include/
+    install -m 0644 ${S}/build/c66/libaet.ae66 ${D}${datadir}/ti/ctoolslib/aet/lib/
+}
+
+COMPATIBLE_MACHINE = "dra7xx|keystone"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+FILES_${PN}-dev += "\
+    ${datadir}/ti/ctoolslib/aet \
+"
+
+ALLOW_EMPTY_${PN} = "1"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] libaet: TI Emulation CTools AET library
  2017-08-28 14:32 [PATCH] libaet: TI Emulation CTools AET library Jacob Stiffler
@ 2017-08-28 15:06 ` Denys Dmytriyenko
  0 siblings, 0 replies; 2+ messages in thread
From: Denys Dmytriyenko @ 2017-08-28 15:06 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-ti

On Mon, Aug 28, 2017 at 10:32:38AM -0400, Jacob Stiffler wrote:
> From: "Zhao, Yuan" <yuanzhao@ti.com>
> 
> The AETLIB library in CToolsLib collection provides programmatic
> access to the Advanced Event Triggering capability on C6x processor
> cores.
> 
> Signed-off-by: Yuan Zhao <yuanzhao@ti.com>
> Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
> ---
>  recipes-ti/ctoolslib/libaet_git.bb | 39 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)
>  create mode 100644 recipes-ti/ctoolslib/libaet_git.bb
> 
> diff --git a/recipes-ti/ctoolslib/libaet_git.bb b/recipes-ti/ctoolslib/libaet_git.bb
> new file mode 100644
> index 0000000..626ba92
> --- /dev/null
> +++ b/recipes-ti/ctoolslib/libaet_git.bb
> @@ -0,0 +1,39 @@
> +SUMMARY = "TI Emulation CTools AET library"
> +DESCRIPTION = "The AETLIB library provides programmatic access to the Advanced Event Triggering capability on C6x processor cores"
> +
> +LICENSE = "BSD"

It would be nice at least for new recipes to be more specific about which 
exact variant of BSD license it's under, most probably BSD-3-Clause...


> +PV = "4.19.0.0"
> +
> +LIC_FILES_CHKSUM = "file://../ctoolslib_manifest.html;md5=b7dd369a2e07ef9a71795ee5a9bd01bd"
> +
> +SRC_URI = "git://git.ti.com/sdo-emu/ctoolslib.git;protocol=git;branch=opencl_aetlib_build"
> +SRCREV = "de7954abab0f0caa8a2c7b53095c30226d901a31"
> +
> +DEPENDS = "ti-cgt6x-native"
> +PR = "r0"
> +
> +S = "${WORKDIR}/git/aet"
> +
> +DEVICE=""
> +DEVICE_dra7xx = "DRA7xx"
> +DEVICE_keystone = "C66AK2Hxx"
> +
> +EXTRA_OEMAKE = "C6X_C_DIR=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x/include"
> +
> +do_install() {
> +    install -d ${D}${datadir}/ti/ctoolslib/aet
> +    install -d ${D}${datadir}/ti/ctoolslib/aet/include
> +    install -d ${D}${datadir}/ti/ctoolslib/aet/lib
> +    cp -rP --preserve=mode,links,timestamps --no-preserve=ownership ${S}/include/* ${D}${datadir}/ti/ctoolslib/aet/include/
> +    install -m 0644 ${S}/build/c66/libaet.ae66 ${D}${datadir}/ti/ctoolslib/aet/lib/
> +}
> +
> +COMPATIBLE_MACHINE = "dra7xx|keystone"
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +FILES_${PN}-dev += "\
> +    ${datadir}/ti/ctoolslib/aet \
> +"
> +
> +ALLOW_EMPTY_${PN} = "1"
> -- 
> 2.7.4
> 
> -- 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-08-28 15:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-28 14:32 [PATCH] libaet: TI Emulation CTools AET library Jacob Stiffler
2017-08-28 15:06 ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.