These are utility scripts used for debugging the VPE and DSS. They have been in use for very critical customer debugs and it is useful to have this shipped as part of the SDK.
Signed-off-by: Karthik Ramanan <[email protected]> --- .../util-scripts/glsdk-util-scripts.bb | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb diff --git a/meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb b/meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb new file mode 100644 index 0000000..87c4937 --- /dev/null +++ b/meta-arago-extras/recipes-devtools/util-scripts/glsdk-util-scripts.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Utility scripts for debug" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://debug/filter-dmesg-rproc.sh;md5=ce264e7cbc036fd2f37073947c2f0800" +PR = "r1" + +COMPATIBLE_MACHINE = "omap-a15" +PACKAGE_ARCH = "${MACHINE_ARCH}" + +SRC_URI = "git://git.ti.com/glsdk/util-scripts.git" + +SRCREV = "ecbb9cd13e1728686a82e87e5c1b325c0e806202" + +S = "${WORKDIR}/git" + +do_compile() { + : +} + +do_install() { + install -d ${D}${datadir}/ti/util-scripts + install -d ${D}${datadir}/ti/util-scripts/debug + install -d ${D}${datadir}/ti/util-scripts/perf + install -m 0644 ${S}/debug/* ${D}${datadir}/ti/util-scripts/debug/. + install -m 0644 ${S}/perf/* ${D}${datadir}/ti/util-scripts/perf/. +} + +FILES_${PN} += "${datadir}/ti/util-scripts/*" + -- 1.9.1 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
