All of lore.kernel.org
 help / color / mirror / Atom feed
* [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe
@ 2017-10-10  9:53 Karthik Ramanan
  2017-10-10  9:53 ` [krogoth 2/2] packagegroup-*-graphics: Add util-scripts into the image Karthik Ramanan
  2017-10-11 19:47 ` [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe Denys Dmytriyenko
  0 siblings, 2 replies; 4+ messages in thread
From: Karthik Ramanan @ 2017-10-10  9:53 UTC (permalink / raw)
  To: meta-arago

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 <a0393906@ti.com>
---
 .../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



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

* [krogoth 2/2] packagegroup-*-graphics: Add util-scripts into the image
  2017-10-10  9:53 [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe Karthik Ramanan
@ 2017-10-10  9:53 ` Karthik Ramanan
  2017-10-11 19:47 ` [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe Denys Dmytriyenko
  1 sibling, 0 replies; 4+ messages in thread
From: Karthik Ramanan @ 2017-10-10  9:53 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Karthik Ramanan <a0393906@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-graphics.bb             | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics.bb
index 250a2f7..12331e0 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to install graphics binaries"
 LICENSE = "MIT"
-PR = "r16"
+PR = "r18"
 
 inherit packagegroup
 
@@ -23,7 +23,12 @@ GRAPHICS_RDEPENDS_append_omap-a15 = "\
     ti-gc320-libs  \
 "
 
+GRAPHICS_DISPLAY_UTILS = "\
+    glsdk-util-scripts \
+"
+
 RDEPENDS_${PN} = "\
     ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', "${GRAPHICS_WESTON}", '', d)} \
     ${GRAPHICS_RDEPENDS} \
+    ${GRAPHICS_DISPLAY_UTILS} \
 "
-- 
1.9.1



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

* Re: [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe
  2017-10-10  9:53 [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe Karthik Ramanan
  2017-10-10  9:53 ` [krogoth 2/2] packagegroup-*-graphics: Add util-scripts into the image Karthik Ramanan
@ 2017-10-11 19:47 ` Denys Dmytriyenko
  2017-10-12  4:35   ` Karthik Ramanan
  1 sibling, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2017-10-11 19:47 UTC (permalink / raw)
  To: Karthik Ramanan; +Cc: meta-arago

Is this coming to morty?


On Tue, Oct 10, 2017 at 03:23:02PM +0530, Karthik Ramanan wrote:
> 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 <a0393906@ti.com>
> ---
>  .../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
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe
  2017-10-11 19:47 ` [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe Denys Dmytriyenko
@ 2017-10-12  4:35   ` Karthik Ramanan
  0 siblings, 0 replies; 4+ messages in thread
From: Karthik Ramanan @ 2017-10-12  4:35 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-arago

Denys,

I'm in the process of including this in morty. There are some other 
patches to be included too.

Will send it out in a day or two.

Regards

Karthik


On 12-Oct-17 1:17 AM, Denys Dmytriyenko wrote:
> Is this coming to morty?
>
>
> On Tue, Oct 10, 2017 at 03:23:02PM +0530, Karthik Ramanan wrote:
>> 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 <a0393906@ti.com>
>> ---
>>   .../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
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago



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

end of thread, other threads:[~2017-10-12  4:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-10  9:53 [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe Karthik Ramanan
2017-10-10  9:53 ` [krogoth 2/2] packagegroup-*-graphics: Add util-scripts into the image Karthik Ramanan
2017-10-11 19:47 ` [krogoth 1/2] glsdk-util-scripts: Add the initial version of recipe Denys Dmytriyenko
2017-10-12  4:35   ` Karthik Ramanan

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.