* [PATCH 01/19] libdce: Add libdce version 2.0 support from glsdk
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 02/19] gstreamer: Add append to use TI version Chase Maupin
` (17 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Migrated the recipe from meta-ti-glsdk and moved to meta-arago
since it is not part of a BSP. Preserved authorship for
Mrinmayee
* Made the following modifications for upstreaming:
* Added a DESCRIPTION field
* Added a PV that matches the version in the git repository
* Removed FILESEXTRAPATHS_prepend setting since it is not used.
* Use STAGING_INCDIR
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../recipes-multimedia/libdce/libdce_git.bb | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 meta-arago-extras/recipes-multimedia/libdce/libdce_git.bb
diff --git a/meta-arago-extras/recipes-multimedia/libdce/libdce_git.bb b/meta-arago-extras/recipes-multimedia/libdce/libdce_git.bb
new file mode 100644
index 0000000..a127c4e
--- /dev/null
+++ b/meta-arago-extras/recipes-multimedia/libdce/libdce_git.bb
@@ -0,0 +1,16 @@
+DESCRIPTION = "Library used for remotely invoking the hw accelerated codec on IVA-HD"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://libdce.h;beginline=1;endline=31;md5=0a398cf815b8b5f31f552266cd453dae"
+
+inherit autotools pkgconfig
+
+PR = "r0+gitr${SRCPV}"
+PV = "2.0"
+
+DEPENDS = "libdrm ti-ipc"
+
+SRC_URI = "git://git.omapzoom.org/repo/libdce.git;protocol=git"
+SRCREV = "0c7eee9ffdd480063a579013161bcf85ada376b1"
+
+S = "${WORKDIR}/git"
+EXTRA_OECONF += "IPC_HEADERS=${STAGING_INCDIR}/ti/ipc/mm"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 02/19] gstreamer: Add append to use TI version
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
2014-05-19 19:19 ` [PATCH 01/19] libdce: Add libdce version 2.0 support from glsdk Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 03/19] gst-plugins-bad: Append with TI version of plugins Chase Maupin
` (16 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Add append to use the version of gstreamer provided at
git.ti.com/glsdk. This recipe was moved from the
meta-arago-glsdk layer and authorship was preserved for
Mrinmayee
* Make machines specific due to changed SRC_URI
Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../gstreamer/gstreamer_0.10.36.bbappend | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-arago-extras/recipes-multimedia/gstreamer/gstreamer_0.10.36.bbappend
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer_0.10.36.bbappend b/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer_0.10.36.bbappend
new file mode 100644
index 0000000..3c97b63
--- /dev/null
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer_0.10.36.bbappend
@@ -0,0 +1,14 @@
+SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gstreamer0-10.git;protocol=git"
+SRCREV = "e505f4a2ceee3b0328eb2efddb9ec1281d3fd60a"
+
+# Make MACHINE specific since we pull different sources per MACHINE
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+PR_append = "-arago1"
+
+S_omap-a15 = "${WORKDIR}/git"
+
+do_configure_prepend_omap-a15() {
+ git submodule init && git submodule update
+ autopoint -f
+}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 03/19] gst-plugins-bad: Append with TI version of plugins
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
2014-05-19 19:19 ` [PATCH 01/19] libdce: Add libdce version 2.0 support from glsdk Chase Maupin
2014-05-19 19:19 ` [PATCH 02/19] gstreamer: Add append to use TI version Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:31 ` Denys Dmytriyenko
2014-05-19 19:19 ` [PATCH 04/19] gst-plugins-good: Add TI version of gst-plugins-good Chase Maupin
` (15 subsequent siblings)
18 siblings, 1 reply; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Migrated the bbappend from meta-arago-glsdk and preserved
authorship for Mrinmayee
* This append pulls the plugin sources from the git.ti.com/glsdk
repository which has modifications for using gstreamer with TI
devices.
* Cleaned up the following for upstreaming:
* Restructured the recipe code to flow better
* Removed libdri2 dependencies since this was for X11 support
which was not ported.
* Removed LICENSE settings since these were over-riding the
base recipe LICENSE values.
* Removed unneeded FILESEXTRAPATHS setting
* Make machines specific due to changed SRC_URI
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../gstreamer/gst-plugins-bad_0.10.23.bbappend | 22 ++++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
new file mode 100644
index 0000000..74cc9ce
--- /dev/null
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
@@ -0,0 +1,22 @@
+DEPENDS_append_omap-a15 = " omap5-sgx-ddk-um-linux libdce libdrm wayland "
+
+# Make MACHINE specific since we pull different sources per MACHINE
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+PR_append = "-arago1"
+
+SRCREV = "f2df6f3b684f39500e22115b160191cef6d7dbaf"
+SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-bad0-10.git;protocol=git"
+
+S_omap-a15 = "${WORKDIR}/git"
+
+EXTRA_OECONF += " --disable-pvr"
+
+do_configure_prepend_omap-a15() {
+ git submodule init && git submodule update
+ autopoint -f
+}
+
+FILES_${PN} += "\
+ ${libdir}/*.so \
+ ${libdir}/gstreamer-0.10/*"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* Re: [PATCH 03/19] gst-plugins-bad: Append with TI version of plugins
2014-05-19 19:19 ` [PATCH 03/19] gst-plugins-bad: Append with TI version of plugins Chase Maupin
@ 2014-05-19 19:31 ` Denys Dmytriyenko
2014-05-19 20:14 ` Maupin, Chase
0 siblings, 1 reply; 33+ messages in thread
From: Denys Dmytriyenko @ 2014-05-19 19:31 UTC (permalink / raw)
To: Chase Maupin; +Cc: meta-arago
On Mon, May 19, 2014 at 02:19:51PM -0500, Chase Maupin wrote:
> From: Mrinmayee Hingolikar <mrinmayee@ti.com>
>
> * Migrated the bbappend from meta-arago-glsdk and preserved
> authorship for Mrinmayee
> * This append pulls the plugin sources from the git.ti.com/glsdk
> repository which has modifications for using gstreamer with TI
> devices.
> * Cleaned up the following for upstreaming:
> * Restructured the recipe code to flow better
> * Removed libdri2 dependencies since this was for X11 support
> which was not ported.
> * Removed LICENSE settings since these were over-riding the
> base recipe LICENSE values.
> * Removed unneeded FILESEXTRAPATHS setting
> * Make machines specific due to changed SRC_URI
>
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
> .../gstreamer/gst-plugins-bad_0.10.23.bbappend | 22 ++++++++++++++++++++
> 1 file changed, 22 insertions(+)
> create mode 100644 meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
>
> diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
> new file mode 100644
> index 0000000..74cc9ce
> --- /dev/null
> +++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
> @@ -0,0 +1,22 @@
> +DEPENDS_append_omap-a15 = " omap5-sgx-ddk-um-linux libdce libdrm wayland "
> +
> +# Make MACHINE specific since we pull different sources per MACHINE
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +PR_append = "-arago1"
> +
> +SRCREV = "f2df6f3b684f39500e22115b160191cef6d7dbaf"
How will this work with the same SRCREV in different repositories?
> +SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-bad0-10.git;protocol=git"
> +
> +S_omap-a15 = "${WORKDIR}/git"
> +
> +EXTRA_OECONF += " --disable-pvr"
> +
> +do_configure_prepend_omap-a15() {
> + git submodule init && git submodule update
> + autopoint -f
> +}
> +
> +FILES_${PN} += "\
> + ${libdir}/*.so \
> + ${libdir}/gstreamer-0.10/*"
> --
> 1.7.9.5
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 33+ messages in thread* Re: [PATCH 03/19] gst-plugins-bad: Append with TI version of plugins
2014-05-19 19:31 ` Denys Dmytriyenko
@ 2014-05-19 20:14 ` Maupin, Chase
0 siblings, 0 replies; 33+ messages in thread
From: Maupin, Chase @ 2014-05-19 20:14 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Monday, May 19, 2014 2:31 PM
>To: Maupin, Chase
>Cc: meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 03/19] gst-plugins-bad: Append
>with TI version of plugins
>
>On Mon, May 19, 2014 at 02:19:51PM -0500, Chase Maupin wrote:
>> From: Mrinmayee Hingolikar <mrinmayee@ti.com>
>>
>> * Migrated the bbappend from meta-arago-glsdk and preserved
>> authorship for Mrinmayee
>> * This append pulls the plugin sources from the git.ti.com/glsdk
>> repository which has modifications for using gstreamer with TI
>> devices.
>> * Cleaned up the following for upstreaming:
>> * Restructured the recipe code to flow better
>> * Removed libdri2 dependencies since this was for X11
>support
>> which was not ported.
>> * Removed LICENSE settings since these were over-riding the
>> base recipe LICENSE values.
>> * Removed unneeded FILESEXTRAPATHS setting
>> * Make machines specific due to changed SRC_URI
>>
>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>> ---
>> .../gstreamer/gst-plugins-bad_0.10.23.bbappend | 22
>++++++++++++++++++++
>> 1 file changed, 22 insertions(+)
>> create mode 100644 meta-arago-extras/recipes-
>multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
>>
>> diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-
>plugins-bad_0.10.23.bbappend b/meta-arago-extras/recipes-
>multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
>> new file mode 100644
>> index 0000000..74cc9ce
>> --- /dev/null
>> +++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-
>plugins-bad_0.10.23.bbappend
>> @@ -0,0 +1,22 @@
>> +DEPENDS_append_omap-a15 = " omap5-sgx-ddk-um-linux libdce
>libdrm wayland "
>> +
>> +# Make MACHINE specific since we pull different sources per
>MACHINE
>> +PACKAGE_ARCH = "${MACHINE_ARCH}"
>> +
>> +PR_append = "-arago1"
>> +
>> +SRCREV = "f2df6f3b684f39500e22115b160191cef6d7dbaf"
>
>How will this work with the same SRCREV in different repositories?
The default gst-plugins.inc file sets these recipes to use .tar.bz2 files, so in that case SRCREV would be ignored so I didn't bother making it machine specific. I can make this machine specific if you want though.
>
>
>> +SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-bad0-
>10.git;protocol=git"
>> +
>> +S_omap-a15 = "${WORKDIR}/git"
>> +
>> +EXTRA_OECONF += " --disable-pvr"
>> +
>> +do_configure_prepend_omap-a15() {
>> + git submodule init && git submodule update
>> + autopoint -f
>> +}
>> +
>> +FILES_${PN} += "\
>> + ${libdir}/*.so \
>> + ${libdir}/gstreamer-0.10/*"
>> --
>> 1.7.9.5
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 04/19] gst-plugins-good: Add TI version of gst-plugins-good
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (2 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 03/19] gst-plugins-bad: Append with TI version of plugins Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 05/19] gst-plugins-base: Add TI version with bbappend Chase Maupin
` (14 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Pulled in bbappend from meta-arago-glsdk to use the
git.ti.com/glsdk repository which contains fixes for using
these plugins with TI devices.
* Preserved authorship from Mrinmayee
* Modified the following for upstream:
* Do not reset the LICENSE field since this will override
the LICENSE from the base recipe
* Added a patch to resolve building against the latest
kernels such as v3.12
* Make machines specific due to changed SRC_URI
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../gstreamer/gst-plugins-good_0.10.31.bbappend | 23 ++++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100644 meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bbappend
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bbappend b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bbappend
new file mode 100644
index 0000000..fdd94e3
--- /dev/null
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bbappend
@@ -0,0 +1,23 @@
+PR_append = "-arago1"
+
+# Make MACHINE specific since we pull different sources per MACHINE
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-good0-10.git;protocol=git"
+SRCREV = "733289614c50ff4e490d5a37ec4af3a540d1dfb9"
+
+# Fix compile errors with recent kernels
+SRC_URI_append_omap-a15 = " file://0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffer-i.patch \
+ file://0001-v4l2_calls-define-V4L2_CID_HCENTER-and-V4L2_CID_VCEN.patch"
+
+S_omap-a15 = "${WORKDIR}/git"
+
+do_configure_prepend_omap-a15() {
+ git submodule init && git submodule update
+ autopoint -f
+}
+
+FILES_${PN} += "\
+ ${libdir}/*.so \
+ ${libdir}/gstreamer-0.10/*"
+
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 05/19] gst-plugins-base: Add TI version with bbappend
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (3 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 04/19] gst-plugins-good: Add TI version of gst-plugins-good Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-30 13:06 ` Cooper Jr., Franklin
2014-05-19 19:19 ` [PATCH 06/19] gst-plugins-ducati: Add GStreamer elements that use ducati Chase Maupin
` (13 subsequent siblings)
18 siblings, 1 reply; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Pulled in the bbappend from meta-arago-glsdk and kept
authorship for Mrinmayee
* This bbappend modifies the gst-plugins-base package to pull
from git.ti.com/glsdk which has additional patches to support
TI devices
* Modified the following for upstreaming:
* Removed setting of LICENSE since this would override the
LICENSE value in the base recipe
* Make machines specific due to changed SRC_URI
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
....bbappend => gst-plugins-base_0.10.36.bbappend} | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
copy meta-arago-extras/recipes-multimedia/gstreamer/{gst-plugins-bad_0.10.23.bbappend => gst-plugins-base_0.10.36.bbappend} (58%)
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bbappend
similarity index 58%
copy from meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
copy to meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bbappend
index 74cc9ce..6691ee3 100644
--- a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base_0.10.36.bbappend
@@ -1,22 +1,20 @@
-DEPENDS_append_omap-a15 = " omap5-sgx-ddk-um-linux libdce libdrm wayland "
+PR_append = "-arago1"
# Make MACHINE specific since we pull different sources per MACHINE
PACKAGE_ARCH = "${MACHINE_ARCH}"
-PR_append = "-arago1"
-
-SRCREV = "f2df6f3b684f39500e22115b160191cef6d7dbaf"
-SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-bad0-10.git;protocol=git"
+SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-base0-10.git;protocol=git"
+SRCREV = "21305017f6095ad6e9b1a8f1006ee5be780b21f8"
S_omap-a15 = "${WORKDIR}/git"
-EXTRA_OECONF += " --disable-pvr"
-
do_configure_prepend_omap-a15() {
git submodule init && git submodule update
autopoint -f
}
+EXTRA_OECONF +="--disable-ivorbis "
+
FILES_${PN} += "\
${libdir}/*.so \
${libdir}/gstreamer-0.10/*"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* Re: [PATCH 05/19] gst-plugins-base: Add TI version with bbappend
2014-05-19 19:19 ` [PATCH 05/19] gst-plugins-base: Add TI version with bbappend Chase Maupin
@ 2014-05-30 13:06 ` Cooper Jr., Franklin
2014-05-30 14:00 ` Denys Dmytriyenko
0 siblings, 1 reply; 33+ messages in thread
From: Cooper Jr., Franklin @ 2014-05-30 13:06 UTC (permalink / raw)
To: Maupin, Chase, meta-arago@arago-project.org
> -----Original Message-----
> From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> bounces@arago-project.org] On Behalf Of Maupin, Chase
> Sent: Monday, May 19, 2014 2:20 PM
> To: meta-arago@arago-project.org
> Subject: [meta-arago] [PATCH 05/19] gst-plugins-base: Add TI version with
> bbappend
>
> From: Mrinmayee Hingolikar <mrinmayee@ti.com>
>
> * Pulled in the bbappend from meta-arago-glsdk and kept
> authorship for Mrinmayee
> * This bbappend modifies the gst-plugins-base package to pull
> from git.ti.com/glsdk which has additional patches to support
> TI devices
> * Modified the following for upstreaming:
> * Removed setting of LICENSE since this would override the
> LICENSE value in the base recipe
> * Make machines specific due to changed SRC_URI
>
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
> ....bbappend => gst-plugins-base_0.10.36.bbappend} | 12 +++++-------
> 1 file changed, 5 insertions(+), 7 deletions(-) copy meta-arago-extras/recipes-
> multimedia/gstreamer/{gst-plugins-bad_0.10.23.bbappend => gst-plugins-
> base_0.10.36.bbappend} (58%)
>
> diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> bad_0.10.23.bbappend b/meta-arago-extras/recipes-
> multimedia/gstreamer/gst-plugins-base_0.10.36.bbappend
> similarity index 58%
> copy from meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> bad_0.10.23.bbappend
> copy to meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> base_0.10.36.bbappend
> index 74cc9ce..6691ee3 100644
> --- a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> bad_0.10.23.bbappend
> +++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base_0.
> +++ 10.36.bbappend
> @@ -1,22 +1,20 @@
> -DEPENDS_append_omap-a15 = " omap5-sgx-ddk-um-linux libdce libdrm
> wayland "
> +PR_append = "-arago1"
>
> # Make MACHINE specific since we pull different sources per MACHINE
> PACKAGE_ARCH = "${MACHINE_ARCH}"
>
> -PR_append = "-arago1"
> -
> -SRCREV = "f2df6f3b684f39500e22115b160191cef6d7dbaf"
[Franklin] I don't see nightly builds failing but I'm curious why the above is ok. Isn't this SRCREV specific to the git.ti.com/glsdk/... repo so for devices other then omap-a15 won't the commit id be invalid?
> -SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-bad0-
> 10.git;protocol=git"
> +SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-base0-
> 10.git;protocol=git"
> +SRCREV = "21305017f6095ad6e9b1a8f1006ee5be780b21f8"
>
> S_omap-a15 = "${WORKDIR}/git"
>
> -EXTRA_OECONF += " --disable-pvr"
> -
> do_configure_prepend_omap-a15() {
> git submodule init && git submodule update
> autopoint -f
> }
>
> +EXTRA_OECONF +="--disable-ivorbis "
> +
> FILES_${PN} += "\
> ${libdir}/*.so \
> ${libdir}/gstreamer-0.10/*"
> --
> 1.7.9.5
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 33+ messages in thread* Re: [PATCH 05/19] gst-plugins-base: Add TI version with bbappend
2014-05-30 13:06 ` Cooper Jr., Franklin
@ 2014-05-30 14:00 ` Denys Dmytriyenko
2014-06-02 13:11 ` Cooper Jr., Franklin
0 siblings, 1 reply; 33+ messages in thread
From: Denys Dmytriyenko @ 2014-05-30 14:00 UTC (permalink / raw)
To: Cooper Jr., Franklin; +Cc: meta-arago@arago-project.org
On Fri, May 30, 2014 at 01:06:19PM +0000, Cooper Jr., Franklin wrote:
>
>
> > -----Original Message-----
> > From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > bounces@arago-project.org] On Behalf Of Maupin, Chase
> > Sent: Monday, May 19, 2014 2:20 PM
> > To: meta-arago@arago-project.org
> > Subject: [meta-arago] [PATCH 05/19] gst-plugins-base: Add TI version with
> > bbappend
> >
> > From: Mrinmayee Hingolikar <mrinmayee@ti.com>
> >
> > * Pulled in the bbappend from meta-arago-glsdk and kept
> > authorship for Mrinmayee
> > * This bbappend modifies the gst-plugins-base package to pull
> > from git.ti.com/glsdk which has additional patches to support
> > TI devices
> > * Modified the following for upstreaming:
> > * Removed setting of LICENSE since this would override the
> > LICENSE value in the base recipe
> > * Make machines specific due to changed SRC_URI
> >
> > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > ---
> > ....bbappend => gst-plugins-base_0.10.36.bbappend} | 12 +++++-------
> > 1 file changed, 5 insertions(+), 7 deletions(-) copy meta-arago-extras/recipes-
> > multimedia/gstreamer/{gst-plugins-bad_0.10.23.bbappend => gst-plugins-
> > base_0.10.36.bbappend} (58%)
> >
> > diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > bad_0.10.23.bbappend b/meta-arago-extras/recipes-
> > multimedia/gstreamer/gst-plugins-base_0.10.36.bbappend
> > similarity index 58%
> > copy from meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > bad_0.10.23.bbappend
> > copy to meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > base_0.10.36.bbappend
> > index 74cc9ce..6691ee3 100644
> > --- a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > bad_0.10.23.bbappend
> > +++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base_0.
> > +++ 10.36.bbappend
> > @@ -1,22 +1,20 @@
> > -DEPENDS_append_omap-a15 = " omap5-sgx-ddk-um-linux libdce libdrm
> > wayland "
> > +PR_append = "-arago1"
> >
> > # Make MACHINE specific since we pull different sources per MACHINE
> > PACKAGE_ARCH = "${MACHINE_ARCH}"
> >
> > -PR_append = "-arago1"
> > -
> > -SRCREV = "f2df6f3b684f39500e22115b160191cef6d7dbaf"
> [Franklin] I don't see nightly builds failing but I'm curious why the above
> is ok. Isn't this SRCREV specific to the git.ti.com/glsdk/... repo so for
> devices other then omap-a15 won't the commit id be invalid?
I already had this question - see discussion on one of the other gstreamer
patches. The answer is that SRC_URI_omap-a15 is git, while for other platforms
it's tar.gz, hence SRCREV only works for omap-a15. It would have been better
to use machine override for SRCREV too, just to be safe in the future.
> > -SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-bad0-
> > 10.git;protocol=git"
> > +SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-base0-
> > 10.git;protocol=git"
> > +SRCREV = "21305017f6095ad6e9b1a8f1006ee5be780b21f8"
> >
> > S_omap-a15 = "${WORKDIR}/git"
> >
> > -EXTRA_OECONF += " --disable-pvr"
> > -
> > do_configure_prepend_omap-a15() {
> > git submodule init && git submodule update
> > autopoint -f
> > }
> >
> > +EXTRA_OECONF +="--disable-ivorbis "
> > +
> > FILES_${PN} += "\
> > ${libdir}/*.so \
> > ${libdir}/gstreamer-0.10/*"
> > --
> > 1.7.9.5
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 33+ messages in thread* Re: [PATCH 05/19] gst-plugins-base: Add TI version with bbappend
2014-05-30 14:00 ` Denys Dmytriyenko
@ 2014-06-02 13:11 ` Cooper Jr., Franklin
0 siblings, 0 replies; 33+ messages in thread
From: Cooper Jr., Franklin @ 2014-06-02 13:11 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Friday, May 30, 2014 9:00 AM
> To: Cooper Jr., Franklin
> Cc: Maupin, Chase; meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 05/19] gst-plugins-base: Add TI version with
> bbappend
>
> On Fri, May 30, 2014 at 01:06:19PM +0000, Cooper Jr., Franklin wrote:
> >
> >
> > > -----Original Message-----
> > > From: meta-arago-bounces@arago-project.org [mailto:meta-arago-
> > > bounces@arago-project.org] On Behalf Of Maupin, Chase
> > > Sent: Monday, May 19, 2014 2:20 PM
> > > To: meta-arago@arago-project.org
> > > Subject: [meta-arago] [PATCH 05/19] gst-plugins-base: Add TI version
> > > with bbappend
> > >
> > > From: Mrinmayee Hingolikar <mrinmayee@ti.com>
> > >
> > > * Pulled in the bbappend from meta-arago-glsdk and kept
> > > authorship for Mrinmayee
> > > * This bbappend modifies the gst-plugins-base package to pull
> > > from git.ti.com/glsdk which has additional patches to support
> > > TI devices
> > > * Modified the following for upstreaming:
> > > * Removed setting of LICENSE since this would override the
> > > LICENSE value in the base recipe
> > > * Make machines specific due to changed SRC_URI
> > >
> > > Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> > > ---
> > > ....bbappend => gst-plugins-base_0.10.36.bbappend} | 12 +++++-------
> > > 1 file changed, 5 insertions(+), 7 deletions(-) copy
> > > meta-arago-extras/recipes-
> > > multimedia/gstreamer/{gst-plugins-bad_0.10.23.bbappend =>
> > > gst-plugins- base_0.10.36.bbappend} (58%)
> > >
> > > diff --git
> > > a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > > bad_0.10.23.bbappend b/meta-arago-extras/recipes-
> > > multimedia/gstreamer/gst-plugins-base_0.10.36.bbappend
> > > similarity index 58%
> > > copy from
> > > meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > > bad_0.10.23.bbappend
> > > copy to meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > > base_0.10.36.bbappend
> > > index 74cc9ce..6691ee3 100644
> > > --- a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> > > bad_0.10.23.bbappend
> > > +++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-
> base_0.
> > > +++ 10.36.bbappend
> > > @@ -1,22 +1,20 @@
> > > -DEPENDS_append_omap-a15 = " omap5-sgx-ddk-um-linux libdce libdrm
> > > wayland "
> > > +PR_append = "-arago1"
> > >
> > > # Make MACHINE specific since we pull different sources per MACHINE
> > > PACKAGE_ARCH = "${MACHINE_ARCH}"
> > >
> > > -PR_append = "-arago1"
> > > -
> > > -SRCREV = "f2df6f3b684f39500e22115b160191cef6d7dbaf"
>
> > [Franklin] I don't see nightly builds failing but I'm curious why the
> > above is ok. Isn't this SRCREV specific to the git.ti.com/glsdk/...
> > repo so for devices other then omap-a15 won't the commit id be invalid?
>
> I already had this question - see discussion on one of the other gstreamer
> patches. The answer is that SRC_URI_omap-a15 is git, while for other
> platforms it's tar.gz, hence SRCREV only works for omap-a15. It would have
> been better to use machine override for SRCREV too, just to be safe in the
> future.
[Franklin] Makes sense. Thanks for clarifying.
>
>
> > > -SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-bad0-
> > > 10.git;protocol=git"
> > > +SRC_URI_omap-a15 = "git://git.ti.com/glsdk/gst-plugins-base0-
> > > 10.git;protocol=git"
> > > +SRCREV = "21305017f6095ad6e9b1a8f1006ee5be780b21f8"
> > >
> > > S_omap-a15 = "${WORKDIR}/git"
> > >
> > > -EXTRA_OECONF += " --disable-pvr"
> > > -
> > > do_configure_prepend_omap-a15() {
> > > git submodule init && git submodule update
> > > autopoint -f
> > > }
> > >
> > > +EXTRA_OECONF +="--disable-ivorbis "
> > > +
> > > FILES_${PN} += "\
> > > ${libdir}/*.so \
> > > ${libdir}/gstreamer-0.10/*"
> > > --
> > > 1.7.9.5
> > >
> > > _______________________________________________
> > > meta-arago mailing list
> > > meta-arago@arago-project.org
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 06/19] gst-plugins-ducati: Add GStreamer elements that use ducati
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (4 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 05/19] gst-plugins-base: Add TI version with bbappend Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 07/19] gst-plugins-vpe: Add TI VPE GStreamer plugins Chase Maupin
` (12 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Added the gstreamer plugins recipe from meta-arago-glsdk that
uses the MM accelerators. Preserved authorship for Mrinmayee
* Made the following modifications for upstreaming:
* Abstracted out common settings used between gst-plugins-ducati
and the gst-plugins-vpe recipes (next patch) into the
gst-plugins-ti.inc file to avoid code duplication
* Moved to gst-plugins-ti directory to group these similar
plugins that share this .inc file together.
* Removed unused FILESEXTRAPATHS setting
* Added DESCRIPTION field
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../gst-plugins-ti/gst-plugins-ducati_git.bb | 10 ++++++++++
.../gst-plugins-ti/gst-plugins-ti.inc | 19 +++++++++++++++++++
2 files changed, 29 insertions(+)
create mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ducati_git.bb
create mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ti.inc
diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ducati_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ducati_git.bb
new file mode 100644
index 0000000..c8fb576
--- /dev/null
+++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ducati_git.bb
@@ -0,0 +1,10 @@
+DESCRIPTION = "GStreamer elements to use the multimedia accelerators available on some TI parts"
+LICENSE = "LGPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
+
+require gst-plugins-ti.inc
+
+PR = "${INC_PR}.0"
+SRCREV = "c50cc9132010bde7f4cb9efc04ca3eba536d26f9"
+
+SRC_URI = "git://git.ti.com/glsdk/gst-plugin-ducati.git;protocol=git"
diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ti.inc b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ti.inc
new file mode 100644
index 0000000..e0c2c78
--- /dev/null
+++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-ti.inc
@@ -0,0 +1,19 @@
+# Include file for common build settings for TI GStreamer plugins
+DEPENDS += "gstreamer gst-plugins-base gst-plugins-bad libdrm libdce"
+
+inherit autotools pkgconfig gettext
+
+INC_PR = "r0"
+
+S = "${WORKDIR}/git"
+
+do_configure() {
+ cd ${S}
+ chmod +x autogen.sh
+ ./autogen.sh --host=arm-linux --with-libtool-sysroot=${STAGING_DIR_TARGET} --prefix=/usr
+}
+
+EXTRA_OECONF += "--enable-maintainer-mode"
+EXTRA_OEMAKE += "'ERROR_CFLAGS=-Wno-deprecated-declarations'"
+
+FILES_${PN} += "${libdir}/gstreamer-0.10/*"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 07/19] gst-plugins-vpe: Add TI VPE GStreamer plugins
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (5 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 06/19] gst-plugins-ducati: Add GStreamer elements that use ducati Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 08/19] ipc-test-fw: Update to not conflict with ipumm-fw Chase Maupin
` (11 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Added plugins from meta-arago-glsdk that enable the use of
the VPE module in GStreamer. Preserved authorship for Mrinmayee
* Modified the following for upstreaming:
* Moved to gst-plugins-ti so that the gst-plugins-ti.inc file
could be used.
* Modified to use gst-plugins-ti.inc
* Added DESCRIPTION
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../gst-plugins-ti/gst-plugins-vpe_git.bb | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-vpe_git.bb
diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-vpe_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-vpe_git.bb
new file mode 100644
index 0000000..cd6f0af
--- /dev/null
+++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gst-plugins-vpe_git.bb
@@ -0,0 +1,11 @@
+DESCRIPTION = "GStreamer elements to use the Video Processing Engine (VPE) found on some TI devices"
+
+LICENSE = "LGPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
+
+require gst-plugins-ti.inc
+
+PR = "${INC_PR}.0"
+SRCREV = "5107007ca1be8ed66f6a9ec3ffbb70ec7eb0b120"
+
+SRC_URI = "git://git.ti.com/glsdk/gst-plugin-vpe.git;protocol=git"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 08/19] ipc-test-fw: Update to not conflict with ipumm-fw
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (6 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 07/19] gst-plugins-vpe: Add TI VPE GStreamer plugins Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 09/19] bvtest: Add bltsville test application Chase Maupin
` (10 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
* This test package installs a firmware only used during IPC
testing. This firmware will conflict with the firmware file
installed by the ipumm-fw recipe. So the firmware needs to
be installed with a .test extension to avoid the conflict.
* The test case will be modified to link the proper firmware to
the proper name at test time.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../ipc-test-fw/ipc-test-fw_3.21.00.02.bb | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/meta-arago-distro/recipes-bsp/ipc-test-fw/ipc-test-fw_3.21.00.02.bb b/meta-arago-distro/recipes-bsp/ipc-test-fw/ipc-test-fw_3.21.00.02.bb
index 41ab2fb..e855e8b 100644
--- a/meta-arago-distro/recipes-bsp/ipc-test-fw/ipc-test-fw_3.21.00.02.bb
+++ b/meta-arago-distro/recipes-bsp/ipc-test-fw/ipc-test-fw_3.21.00.02.bb
@@ -4,16 +4,17 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/BSD;md5=377548
PACKAGE_ARCH = "${MACHINE_ARCH}"
-PR = "eng-4-gb9283b0"
+FWVER = "eng-4-gb9283b0"
+PR = "r0+${FWVER}"
COMPATIBLE_MACHINE = "omap5-evm|dra7xx-evm"
INHIBIT_PACKAGE_STRIP = "1"
INSANE_SKIP_${PN} = "arch"
-S = "${WORKDIR}/${PV}_${PR}"
+S = "${WORKDIR}/${PV}_${FWVER}"
-SRC_URI = "http://arago-project.org/files/releases/ipc-test-fw/${PV}_${PR}.tar.gz"
+SRC_URI = "http://arago-project.org/files/releases/ipc-test-fw/${PV}_${FWVER}.tar.gz"
SRC_URI[md5sum] = "4fcba6844949ea909131684a80233800"
SRC_URI[sha256sum] = "3b90b195c382937551251055aaa9185627e86027c91fb41a594dc390391d5fb6"
@@ -25,9 +26,14 @@ do_compile() {
:
}
+# Add a .test extension to the firmware files so that they do not conflict
+# with the real firmware images
do_install() {
install -d ${D}${base_libdir}/firmware
- install -m 755 ${FW_FILES} ${D}${base_libdir}/firmware/
+ for f in ${FW_FILES}
+ do
+ install -m 755 ${f} ${D}${base_libdir}/firmware/${f}.test
+ done
}
FILES_${PN} += "${base_libdir}/firmware"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 09/19] bvtest: Add bltsville test application
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (7 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 08/19] ipc-test-fw: Update to not conflict with ipumm-fw Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 10/19] omapdrmtest: Test application for OMAP DRM interface Chase Maupin
` (9 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Migrated from meta-ti-glsdk layer but placed in meta-arago
since it is not BSP related. Preserved authorship for
Mrinmayee
* Updated for upstream:
* Use install instead of mkdir and cp
* Use TOOLCHAIN_PREFIX instead of hard coded value
for CROSS_COMPILE variable setting
* Added DESCRIPTION value
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../recipes-graphics/bvtest/bvtest_git.bb | 30 ++++++++++++++++++++
1 file changed, 30 insertions(+)
create mode 100644 meta-arago-extras/recipes-graphics/bvtest/bvtest_git.bb
diff --git a/meta-arago-extras/recipes-graphics/bvtest/bvtest_git.bb b/meta-arago-extras/recipes-graphics/bvtest/bvtest_git.bb
new file mode 100644
index 0000000..cac8f7f
--- /dev/null
+++ b/meta-arago-extras/recipes-graphics/bvtest/bvtest_git.bb
@@ -0,0 +1,30 @@
+DESCRIPTION = "This is a bltsville userspace test application used to test \
+the sanity of bltsville implementation"
+
+HOMEPAGE = "https://git.ti.com/bvtest/bvtest"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://COPYING;md5=fc5539100b9be986fce191b19d2a48ae"
+DEPENDS = "bltsville libdrm"
+
+inherit autotools pkgconfig
+
+PR = "r0"
+SRCREV = "67e76ddf08703bd157935f666030c74a370b2836"
+
+SRC_URI = "git://git.ti.com/bvtest/bvtest.git;protocol=git"
+
+S = "${WORKDIR}/git"
+
+
+do_compile() {
+ export CC_PATH=${TOOLCHAIN_PATH}
+ export CROSS_COMPILE=${TOOLCHAIN_PREFIX}
+ export BLTSVILLESEARCHPATH=${STAGING_DIR_TARGET}/usr
+ cd ${S}/src/bvtest
+ make -f makefile.linux
+}
+
+do_install() {
+ install -d ${D}${bindir}
+ install -m 0755 ${S}/src/bvtest/bvtest ${D}${bindir}
+}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 10/19] omapdrmtest: Test application for OMAP DRM interface
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (8 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 09/19] bvtest: Add bltsville test application Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:19 ` [PATCH 11/19] libgbm: Add TI specific version of libgbm Chase Maupin
` (8 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Migrated from meta-arago-glsdk and preserved authorship for
Mrinmayee
* Updated for upstream:
* Added DESCRIPTION value
* Removed unneeded FILESEXTRAPATHS variable
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../omapdrmtest/omapdrmtest_1.0.0.bb | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb
diff --git a/meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb b/meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb
new file mode 100644
index 0000000..d24130f
--- /dev/null
+++ b/meta-arago-extras/recipes-graphics/omapdrmtest/omapdrmtest_1.0.0.bb
@@ -0,0 +1,16 @@
+DESCRIPTION = "Test applications for OMAP DRM interface"
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://viddec3test.c;beginline=1;endline=16;md5=c391f44e40a29096285e3121923041df"
+DEPENDS += "libdrm libdce libav"
+
+inherit autotools pkgconfig
+
+PR = "r3"
+SRCREV = "64e4e389dd8be4947c107a057f34556a4280281a"
+
+SRC_URI = "git://git.ti.com/glsdk/omapdrmtest.git;protocol=git"
+
+S = "${WORKDIR}/git"
+
+INSANE_SKIP_omapdrmtest = "dev-deps"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 11/19] libgbm: Add TI specific version of libgbm
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (9 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 10/19] omapdrmtest: Test application for OMAP DRM interface Chase Maupin
@ 2014-05-19 19:19 ` Chase Maupin
2014-05-19 19:20 ` [PATCH 12/19] kmscube: Add kmscube demo application Chase Maupin
` (7 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:19 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* This was migrated from meta-ti-glsdk to meta-arago because it
is not a BSP component. Preserved authorship for Mrinmayee
* Changes made for upstreaming:
* Removed un-needed .inc file since there is only one version
* Renamed to just libgbm instead of libgbm-glsdk which also
means that the PROVIDES line could be removed.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../recipes-graphics/gbm/libgbm_9.0.0.bb | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 meta-arago-extras/recipes-graphics/gbm/libgbm_9.0.0.bb
diff --git a/meta-arago-extras/recipes-graphics/gbm/libgbm_9.0.0.bb b/meta-arago-extras/recipes-graphics/gbm/libgbm_9.0.0.bb
new file mode 100644
index 0000000..8b20dbb
--- /dev/null
+++ b/meta-arago-extras/recipes-graphics/gbm/libgbm_9.0.0.bb
@@ -0,0 +1,15 @@
+DESCRIPTION = "Userspace interface for the kernel GBM services."
+HOMEPAGE = "http://git.ti.com"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://gbm.c;beginline=1;endline=26;md5=b871c7f2f477df29ee4c0ec437b187f7"
+DEPENDS = "libdrm"
+
+COMPATIBLE_MACHINE = "omap-a15"
+
+inherit autotools pkgconfig
+
+SRCREV = "cb86a2f2cecd41023bf1bf12fbcf11be11220f31"
+
+SRC_URI = "git://git.ti.com/glsdk/libgbm.git;protocol=git"
+
+S = "${WORKDIR}/git"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 12/19] kmscube: Add kmscube demo application
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (10 preceding siblings ...)
2014-05-19 19:19 ` [PATCH 11/19] libgbm: Add TI specific version of libgbm Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
2014-05-19 19:20 ` [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils Chase Maupin
` (6 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
From: Mrinmayee Hingolikar <mrinmayee@ti.com>
* Migrated from meta-arago-glsdk and preserved authorship for
Mrinmayee
* Modified for upstream:
* Add a DESCRIPTION
* Remove unneeded FILESEXTRAPATHS variable
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../recipes-graphics/kmscube/kmscube_1.0.0.bb | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
diff --git a/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb b/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
new file mode 100644
index 0000000..9f55d4e
--- /dev/null
+++ b/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "Demo application to showcase 3D graphics on SGX using kms and gbm"
+HOMEPAGE = "http://git.ti.com"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=e760965096e52da8f3969dd53b6bf158"
+
+DEPENDS = "libdrm libgbm-glsdk omap5-sgx-ddk-um-linux"
+
+COMPATIBLE_MACHINE = "omap-a15"
+
+inherit autotools pkgconfig
+
+PR = "r2"
+SRCREV = "1c8a0d26c5b1918432fd94d2ac9894b3dcdb2814"
+
+SRC_URI = "git://git.ti.com/glsdk/kmscube.git;protocol=git"
+
+S = "${WORKDIR}/git"
+
+INSANE_SKIP_kmscube += "dev-deps"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (11 preceding siblings ...)
2014-05-19 19:20 ` [PATCH 12/19] kmscube: Add kmscube demo application Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
2014-05-19 19:29 ` Denys Dmytriyenko
2014-05-19 19:20 ` [PATCH 14/19] packagegroup-arago-gst: Add accelerated MM packages Chase Maupin
` (5 subsequent siblings)
18 siblings, 1 reply; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
* Add the base nfs-utils package along with the nfs-utils-client
package.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../packagegroups/packagegroup-arago-base-tisdk.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
index 16b5df1..2db98b8 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Additional packages beyond console packages shared by TI SDKs"
LICENSE = "MIT"
-PR = "r13"
+PR = "r14"
inherit packagegroup
@@ -16,5 +16,6 @@ RDEPENDS_${PN} = "\
iperf \
psplash \
arago-gpl-notice \
+ nfs-utils \
nfs-utils-client \
"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-19 19:20 ` [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils Chase Maupin
@ 2014-05-19 19:29 ` Denys Dmytriyenko
2014-05-19 20:11 ` Maupin, Chase
0 siblings, 1 reply; 33+ messages in thread
From: Denys Dmytriyenko @ 2014-05-19 19:29 UTC (permalink / raw)
To: Chase Maupin; +Cc: meta-arago
On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin wrote:
> * Add the base nfs-utils package along with the nfs-utils-client
> package.
I asked it before, but don't remember seeing the answer - what's the purpose?
Is there a use case for NFS server?
> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
> ---
> .../packagegroups/packagegroup-arago-base-tisdk.bb | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
> index 16b5df1..2db98b8 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
> @@ -1,6 +1,6 @@
> DESCRIPTION = "Additional packages beyond console packages shared by TI SDKs"
> LICENSE = "MIT"
> -PR = "r13"
> +PR = "r14"
>
> inherit packagegroup
>
> @@ -16,5 +16,6 @@ RDEPENDS_${PN} = "\
> iperf \
> psplash \
> arago-gpl-notice \
> + nfs-utils \
> nfs-utils-client \
> "
> --
> 1.7.9.5
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 33+ messages in thread* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-19 19:29 ` Denys Dmytriyenko
@ 2014-05-19 20:11 ` Maupin, Chase
2014-05-19 20:28 ` Carlos Hernandez
0 siblings, 1 reply; 33+ messages in thread
From: Maupin, Chase @ 2014-05-19 20:11 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Monday, May 19, 2014 2:30 PM
>To: Maupin, Chase
>Cc: meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>tiskd: Add base nfs-utils
>
>On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin wrote:
>> * Add the base nfs-utils package along with the nfs-utils-client
>> package.
>
>I asked it before, but don't remember seeing the answer - what's
>the purpose?
>Is there a use case for NFS server?
I can't find my reason now. I'm going to remove it and do another test build. Maybe it was just a left over artifact.
>
>
>> Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
>> ---
>> .../packagegroups/packagegroup-arago-base-tisdk.bb | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta-arago-distro/recipes-
>core/packagegroups/packagegroup-arago-base-tisdk.bb b/meta-arago-
>distro/recipes-core/packagegroups/packagegroup-arago-base-tisdk.bb
>> index 16b5df1..2db98b8 100644
>> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-
>arago-base-tisdk.bb
>> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-
>arago-base-tisdk.bb
>> @@ -1,6 +1,6 @@
>> DESCRIPTION = "Additional packages beyond console packages
>shared by TI SDKs"
>> LICENSE = "MIT"
>> -PR = "r13"
>> +PR = "r14"
>>
>> inherit packagegroup
>>
>> @@ -16,5 +16,6 @@ RDEPENDS_${PN} = "\
>> iperf \
>> psplash \
>> arago-gpl-notice \
>> + nfs-utils \
>> nfs-utils-client \
>> "
>> --
>> 1.7.9.5
>>
>> _______________________________________________
>> meta-arago mailing list
>> meta-arago@arago-project.org
>> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 33+ messages in thread* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-19 20:11 ` Maupin, Chase
@ 2014-05-19 20:28 ` Carlos Hernandez
2014-05-20 10:03 ` Balasubramanian, Aparna
0 siblings, 1 reply; 33+ messages in thread
From: Carlos Hernandez @ 2014-05-19 20:28 UTC (permalink / raw)
To: Maupin, Chase; +Cc: meta-arago@arago-project.org, Balasubramanian, Aparna
On 05/19/2014 04:11 PM, Maupin, Chase wrote:
>> -----Original Message-----
>> >From: Dmytriyenko, Denys
>> >Sent: Monday, May 19, 2014 2:30 PM
>> >To: Maupin, Chase
>> >Cc:meta-arago@arago-project.org
>> >Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>> >tiskd: Add base nfs-utils
>> >
>> >On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin wrote:
>>> >>* Add the base nfs-utils package along with the nfs-utils-client
>>> >> package.
>> >
>> >I asked it before, but don't remember seeing the answer - what's
>> >the purpose?
>> >Is there a use case for NFS server?
> I can't find my reason now. I'm going to remove it and do another test build. Maybe it was just a left over artifact.
>
+Aparna
I believe one of the test cases is hosting a NFS server in the target.
Of course, one could argue that it should go in the test package group
instead of base-tisdk.
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-19 20:28 ` Carlos Hernandez
@ 2014-05-20 10:03 ` Balasubramanian, Aparna
2014-05-20 14:57 ` Maupin, Chase
2014-05-21 13:58 ` Denys Dmytriyenko
0 siblings, 2 replies; 33+ messages in thread
From: Balasubramanian, Aparna @ 2014-05-20 10:03 UTC (permalink / raw)
To: Hernandez, Carlos, Maupin, Chase; +Cc: meta-arago@arago-project.org
Yes, I have a test case which checks whether following can be done from device under test.
root@xxxxx-evm:/sbin# mount -t nfs -o nolock xx.xxx.xxx.xx:/tftpboot /mnt/testpoint
Thanks,
Aparna
-----Original Message-----
From: Hernandez, Carlos
Sent: Monday, May 19, 2014 3:29 PM
To: Maupin, Chase
Cc: Dmytriyenko, Denys; meta-arago@arago-project.org; Balasubramanian, Aparna
Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
On 05/19/2014 04:11 PM, Maupin, Chase wrote:
>> -----Original Message-----
>> >From: Dmytriyenko, Denys
>> >Sent: Monday, May 19, 2014 2:30 PM
>> >To: Maupin, Chase
>> >Cc:meta-arago@arago-project.org
>> >Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>> >tiskd: Add base nfs-utils
>> >
>> >On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin wrote:
>>> >>* Add the base nfs-utils package along with the nfs-utils-client
>>> >> package.
>> >
>> >I asked it before, but don't remember seeing the answer - what's the
>> >purpose?
>> >Is there a use case for NFS server?
> I can't find my reason now. I'm going to remove it and do another test build. Maybe it was just a left over artifact.
>
+Aparna
I believe one of the test cases is hosting a NFS server in the target.
Of course, one could argue that it should go in the test package group instead of base-tisdk.
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-20 10:03 ` Balasubramanian, Aparna
@ 2014-05-20 14:57 ` Maupin, Chase
2014-05-21 13:58 ` Denys Dmytriyenko
1 sibling, 0 replies; 33+ messages in thread
From: Maupin, Chase @ 2014-05-20 14:57 UTC (permalink / raw)
To: Balasubramanian, Aparna, Hernandez, Carlos; +Cc: meta-arago@arago-project.org
OK. That might have been where I got it and I just got it mixed up in this patch set.
Sincerely,
Chase Maupin
Integration Team Manager
Linux Core Product Development
e-mail: chase.maupin@ti.com
phone: (214) 567-2950
For support:
Forums - http://e2e.ti.com
Wiki - http://processors.wiki.ti.com/index.php/Main_Page
>-----Original Message-----
>From: Balasubramanian, Aparna
>Sent: Tuesday, May 20, 2014 5:03 AM
>To: Hernandez, Carlos; Maupin, Chase
>Cc: Dmytriyenko, Denys; meta-arago@arago-project.org
>Subject: RE: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>tiskd: Add base nfs-utils
>
>Yes, I have a test case which checks whether following can be done
>from device under test.
>root@xxxxx-evm:/sbin# mount -t nfs -o nolock
>xx.xxx.xxx.xx:/tftpboot /mnt/testpoint
>Thanks,
>Aparna
>
>-----Original Message-----
>From: Hernandez, Carlos
>Sent: Monday, May 19, 2014 3:29 PM
>To: Maupin, Chase
>Cc: Dmytriyenko, Denys; meta-arago@arago-project.org;
>Balasubramanian, Aparna
>Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>tiskd: Add base nfs-utils
>
>On 05/19/2014 04:11 PM, Maupin, Chase wrote:
>>> -----Original Message-----
>>> >From: Dmytriyenko, Denys
>>> >Sent: Monday, May 19, 2014 2:30 PM
>>> >To: Maupin, Chase
>>> >Cc:meta-arago@arago-project.org
>>> >Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-
>base-
>>> >tiskd: Add base nfs-utils
>>> >
>>> >On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin wrote:
>>>> >>* Add the base nfs-utils package along with the nfs-utils-
>client
>>>> >> package.
>>> >
>>> >I asked it before, but don't remember seeing the answer -
>what's the
>>> >purpose?
>>> >Is there a use case for NFS server?
>> I can't find my reason now. I'm going to remove it and do
>another test build. Maybe it was just a left over artifact.
>>
>
>+Aparna
>I believe one of the test cases is hosting a NFS server in the
>target.
>Of course, one could argue that it should go in the test package
>group instead of base-tisdk.
>
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-20 10:03 ` Balasubramanian, Aparna
2014-05-20 14:57 ` Maupin, Chase
@ 2014-05-21 13:58 ` Denys Dmytriyenko
2014-05-21 14:02 ` Balasubramanian, Aparna
1 sibling, 1 reply; 33+ messages in thread
From: Denys Dmytriyenko @ 2014-05-21 13:58 UTC (permalink / raw)
To: Balasubramanian, Aparna; +Cc: meta-arago@arago-project.org
On Tue, May 20, 2014 at 06:03:10AM -0400, Balasubramanian, Aparna wrote:
> Yes, I have a test case which checks whether following can be done from device under test.
> root@xxxxx-evm:/sbin# mount -t nfs -o nolock xx.xxx.xxx.xx:/tftpboot /mnt/testpoint
So, isn't that an NFS client use case?
> -----Original Message-----
> From: Hernandez, Carlos
> Sent: Monday, May 19, 2014 3:29 PM
> To: Maupin, Chase
> Cc: Dmytriyenko, Denys; meta-arago@arago-project.org; Balasubramanian, Aparna
> Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
>
> On 05/19/2014 04:11 PM, Maupin, Chase wrote:
> >> -----Original Message-----
> >> >From: Dmytriyenko, Denys
> >> >Sent: Monday, May 19, 2014 2:30 PM
> >> >To: Maupin, Chase
> >> >Cc:meta-arago@arago-project.org
> >> >Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
> >> >tiskd: Add base nfs-utils
> >> >
> >> >On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin wrote:
> >>> >>* Add the base nfs-utils package along with the nfs-utils-client
> >>> >> package.
> >> >
> >> >I asked it before, but don't remember seeing the answer - what's the
> >> >purpose?
> >> >Is there a use case for NFS server?
> > I can't find my reason now. I'm going to remove it and do another test build. Maybe it was just a left over artifact.
> >
>
> +Aparna
> I believe one of the test cases is hosting a NFS server in the target.
> Of course, one could argue that it should go in the test package group instead of base-tisdk.
>
>
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-21 13:58 ` Denys Dmytriyenko
@ 2014-05-21 14:02 ` Balasubramanian, Aparna
2014-05-21 14:03 ` Maupin, Chase
0 siblings, 1 reply; 33+ messages in thread
From: Balasubramanian, Aparna @ 2014-05-21 14:02 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
Correct and it did need the package - nfs-utils-client_* (example: nfs-utils-client_1.1.2-r10.6_armv
7a.ipk).
Regards,
Aparna
-----Original Message-----
From: Dmytriyenko, Denys
Sent: Wednesday, May 21, 2014 8:58 AM
To: Balasubramanian, Aparna
Cc: Hernandez, Carlos; Maupin, Chase; meta-arago@arago-project.org
Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
On Tue, May 20, 2014 at 06:03:10AM -0400, Balasubramanian, Aparna wrote:
> Yes, I have a test case which checks whether following can be done from device under test.
> root@xxxxx-evm:/sbin# mount -t nfs -o nolock xx.xxx.xxx.xx:/tftpboot
> /mnt/testpoint
So, isn't that an NFS client use case?
> -----Original Message-----
> From: Hernandez, Carlos
> Sent: Monday, May 19, 2014 3:29 PM
> To: Maupin, Chase
> Cc: Dmytriyenko, Denys; meta-arago@arago-project.org; Balasubramanian,
> Aparna
> Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-tiskd:
> Add base nfs-utils
>
> On 05/19/2014 04:11 PM, Maupin, Chase wrote:
> >> -----Original Message-----
> >> >From: Dmytriyenko, Denys
> >> >Sent: Monday, May 19, 2014 2:30 PM
> >> >To: Maupin, Chase
> >> >Cc:meta-arago@arago-project.org
> >> >Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
> >> >tiskd: Add base nfs-utils
> >> >
> >> >On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin wrote:
> >>> >>* Add the base nfs-utils package along with the nfs-utils-client
> >>> >> package.
> >> >
> >> >I asked it before, but don't remember seeing the answer - what's
> >> >the purpose?
> >> >Is there a use case for NFS server?
> > I can't find my reason now. I'm going to remove it and do another test build. Maybe it was just a left over artifact.
> >
>
> +Aparna
> I believe one of the test cases is hosting a NFS server in the target.
> Of course, one could argue that it should go in the test package group instead of base-tisdk.
>
>
^ permalink raw reply [flat|nested] 33+ messages in thread
* Re: [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils
2014-05-21 14:02 ` Balasubramanian, Aparna
@ 2014-05-21 14:03 ` Maupin, Chase
0 siblings, 0 replies; 33+ messages in thread
From: Maupin, Chase @ 2014-05-21 14:03 UTC (permalink / raw)
To: Balasubramanian, Aparna, Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
>-----Original Message-----
>From: Balasubramanian, Aparna
>Sent: Wednesday, May 21, 2014 9:03 AM
>To: Dmytriyenko, Denys
>Cc: Hernandez, Carlos; Maupin, Chase; meta-arago@arago-project.org
>Subject: RE: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>tiskd: Add base nfs-utils
>
>Correct and it did need the package - nfs-utils-client_* (example:
>nfs-utils-client_1.1.2-r10.6_armv
>7a.ipk).
My testing showed nfs-utils was not needed. So I'm really not sure how I picked this change up. Please just ignore this patch.
>
>Regards,
>Aparna
>
>-----Original Message-----
>From: Dmytriyenko, Denys
>Sent: Wednesday, May 21, 2014 8:58 AM
>To: Balasubramanian, Aparna
>Cc: Hernandez, Carlos; Maupin, Chase; meta-arago@arago-project.org
>Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>tiskd: Add base nfs-utils
>
>On Tue, May 20, 2014 at 06:03:10AM -0400, Balasubramanian, Aparna
>wrote:
>> Yes, I have a test case which checks whether following can be
>done from device under test.
>> root@xxxxx-evm:/sbin# mount -t nfs -o nolock
>xx.xxx.xxx.xx:/tftpboot
>> /mnt/testpoint
>
>So, isn't that an NFS client use case?
>
>
>> -----Original Message-----
>> From: Hernandez, Carlos
>> Sent: Monday, May 19, 2014 3:29 PM
>> To: Maupin, Chase
>> Cc: Dmytriyenko, Denys; meta-arago@arago-project.org;
>Balasubramanian,
>> Aparna
>> Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-base-
>tiskd:
>> Add base nfs-utils
>>
>> On 05/19/2014 04:11 PM, Maupin, Chase wrote:
>> >> -----Original Message-----
>> >> >From: Dmytriyenko, Denys
>> >> >Sent: Monday, May 19, 2014 2:30 PM
>> >> >To: Maupin, Chase
>> >> >Cc:meta-arago@arago-project.org
>> >> >Subject: Re: [meta-arago] [PATCH 13/19] packagegroup-arago-
>base-
>> >> >tiskd: Add base nfs-utils
>> >> >
>> >> >On Mon, May 19, 2014 at 02:20:01PM -0500, Chase Maupin
>wrote:
>> >>> >>* Add the base nfs-utils package along with the nfs-utils-
>client
>> >>> >> package.
>> >> >
>> >> >I asked it before, but don't remember seeing the answer -
>what's
>> >> >the purpose?
>> >> >Is there a use case for NFS server?
>> > I can't find my reason now. I'm going to remove it and do
>another test build. Maybe it was just a left over artifact.
>> >
>>
>> +Aparna
>> I believe one of the test cases is hosting a NFS server in the
>target.
>> Of course, one could argue that it should go in the test package
>group instead of base-tisdk.
>>
>>
^ permalink raw reply [flat|nested] 33+ messages in thread
* [PATCH 14/19] packagegroup-arago-gst: Add accelerated MM packages
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (12 preceding siblings ...)
2014-05-19 19:20 ` [PATCH 13/19] packagegroup-arago-base-tiskd: Add base nfs-utils Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
2014-05-19 19:20 ` [PATCH 15/19] packagegroup-arago-tisdk-graphics: Add SGX and BLTsville packages Chase Maupin
` (4 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
* Add the gst-plugins-ducati and gst-plugins-vpe packages for
OMAP5 and DRA7xx. gsp-plugins-vpe is only used for dra7xx-evm
machines.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../packagegroups/packagegroup-arago-gst.bb | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb
index 82265a1..9e35f26 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-gst.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to add gstreamer and gstreamer plugins"
LICENSE = "MIT"
-PR = "r6"
+PR = "r7"
inherit packagegroup
@@ -14,7 +14,12 @@ GSTREAMER = " \
gst-plugins-bad-meta \
"
+GSTREAMER_ACCEL_MM = ""
+GSTREAMER_ACCEL_MM_omap-a15 = "gst-plugins-ducati"
+GSTREAMER_ACCEL_MM_append_dra7xx-evm = " gst-plugins-vpe"
+
RDEPENDS_${PN} = "\
${GSTREAMER} \
+ ${GSTREAMER_ACCEL_MM} \
gst-ffmpeg \
"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 15/19] packagegroup-arago-tisdk-graphics: Add SGX and BLTsville packages
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (13 preceding siblings ...)
2014-05-19 19:20 ` [PATCH 14/19] packagegroup-arago-gst: Add accelerated MM packages Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
2014-05-19 19:20 ` [PATCH 16/19] packagegroup-arago-tisdk-addons: Add libdrm components Chase Maupin
` (3 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
* Add the SGX and BLTsville support for OMAP5 and DRA7xx machines
where applicable.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
...packagegroup-arago-tisdk-graphics-sdk-target.bb | 11 ++++++++++-
.../packagegroup-arago-tisdk-graphics.bb | 14 ++++++++++++++
2 files changed, 24 insertions(+), 1 deletion(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb
index 8775cc5..9b1ba93 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-graphics-sdk-target.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to install graphics binaries on sdk target"
LICENSE = "MIT"
-PR = "r3"
+PR = "r4"
inherit packagegroup
@@ -19,6 +19,15 @@ GRAPHICS_RDEPENDS_ti43x = "\
libgles-omap3-dev \
"
+GRAPHICS_RDEPENDS_omap-a15 = "\
+ libgbm-dev \
+ omap5-sgx-ddk-um-linux-dev \
+ "
+
+GRAPHICS_BLTSVILLE = ""
+GRAPHICS_BLTSVILLE_omap-a15 = " bltsville-dev"
+
RDEPENDS_${PN} = "\
${GRAPHICS_RDEPENDS} \
+ ${GRAPHICS_BLTSVILLE} \
"
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 76e7bf2..fd64022 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
@@ -32,6 +32,20 @@ GRAPHICS_RDEPENDS_omap3 = "\
${GRAPHICS_SDK} \
"
+GRAPHICS_RDEPENDS_omap-a15 = "\
+ libgbm \
+ omap5-sgx-ddk-um-linux \
+ "
+# Put this back when compile issues are fixed against 3.12
+# omapdrm-pvr
+
+GRAPHICS_BLTSVILLE = ""
+GRAPHICS_BLTSVILLE_omap-a15 = " \
+ bltsville \
+ "
+
+
RDEPENDS_${PN} = "\
${GRAPHICS_RDEPENDS} \
+ ${GRAPHICS_BLTSVILLE} \
"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 16/19] packagegroup-arago-tisdk-addons: Add libdrm components
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (14 preceding siblings ...)
2014-05-19 19:20 ` [PATCH 15/19] packagegroup-arago-tisdk-graphics: Add SGX and BLTsville packages Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
2014-05-19 19:20 ` [PATCH 17/19] packagegroup-arago-tisdk-multimedia: Add accelerator firmwares Chase Maupin
` (2 subsequent siblings)
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
* Add the components for libdrm support for kms
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../packagegroup-arago-tisdk-addons-sdk-target.bb | 4 ++--
.../packagegroup-arago-tisdk-addons.bb | 1 +
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
index f069840..19ecf06 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb
@@ -1,12 +1,12 @@
DESCRIPTION = "Task to install headers and libraries related to addons into the SDK"
LICENSE = "MIT"
-PR = "r3"
+PR = "r4"
inherit packagegroup
PACKAGE_ARCH = "${MACHINE_ARCH}"
-UTILS = ""
+UTILS = "libdrm-dev"
UTILS_append_omap3 = " canutils-dev"
UTILS_append_ti33x = " canutils-dev"
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
index 859a223..6fe9d41 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons.bb
@@ -17,6 +17,7 @@ UTILS = " \
dropbear \
openssh-sftp-server \
ptpd \
+ libdrm-kms \
"
UTILS_UBOOT_FW = "u-boot-fw-utils"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 17/19] packagegroup-arago-tisdk-multimedia: Add accelerator firmwares
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (15 preceding siblings ...)
2014-05-19 19:20 ` [PATCH 16/19] packagegroup-arago-tisdk-addons: Add libdrm components Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
2014-05-19 19:20 ` [PATCH 18/19] packagegroup-arago-test: Add drm and bltsville tests Chase Maupin
2014-05-19 19:20 ` [PATCH 19/19] arago-prefs: Use omap5-sgx package for libgles dependencies Chase Maupin
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
* Add the firmware packages for the various accelerators found
on omap-a15 devices
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../packagegroup-arago-tisdk-multimedia.bb | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
index d9828b8..e9fdbec 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to add multimedia related packages"
LICENSE = "MIT"
-PR = "r6"
+PR = "r7"
inherit packagegroup
@@ -29,11 +29,26 @@ MULTIMEDIA_append_am37x-evm = " \
av-examples \
"
+MULTIMEDIA_append_omap5-evm = " \
+ abefw \
+ "
+
MULTIMEDIA_append_am3517-evm = " \
av-examples \
"
+ACCEL_FW = ""
+ACCEL_FW_append_omap-a15 = " \
+ ipumm-fw \
+ "
+ACCEL_FW_append_dra7xx-evm = " \
+ dspdce-fw \
+ vis \
+ "
+
+
RDEPENDS_${PN} = "\
packagegroup-arago-gst \
${MULTIMEDIA} \
+ ${ACCEL_FW} \
"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 18/19] packagegroup-arago-test: Add drm and bltsville tests
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (16 preceding siblings ...)
2014-05-19 19:20 ` [PATCH 17/19] packagegroup-arago-tisdk-multimedia: Add accelerator firmwares Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
2014-05-19 19:20 ` [PATCH 19/19] arago-prefs: Use omap5-sgx package for libgles dependencies Chase Maupin
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../packagegroups/packagegroup-arago-test.bb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
index 29c8dae..c87f7aa 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-test.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Extended task to get System Test specific apps"
LICENSE = "MIT"
-PR = "r16"
+PR = "r17"
inherit packagegroup
@@ -31,6 +31,8 @@ ARAGO_TI_TEST = "\
ARAGO_TI_TEST_append_omap-a15 = " \
omapconf \
ipc-test-fw \
+ omapdrmtest \
+ bvtest \
"
ARAGO_TI_TEST_append_dra7xx-evm = " \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread* [PATCH 19/19] arago-prefs: Use omap5-sgx package for libgles dependencies
2014-05-19 19:19 [PATCH 00/19] Add GLSDK accelerated MM and GFX support Chase Maupin
` (17 preceding siblings ...)
2014-05-19 19:20 ` [PATCH 18/19] packagegroup-arago-test: Add drm and bltsville tests Chase Maupin
@ 2014-05-19 19:20 ` Chase Maupin
18 siblings, 0 replies; 33+ messages in thread
From: Chase Maupin @ 2014-05-19 19:20 UTC (permalink / raw)
To: meta-arago
* Failure to set the omap5-sgx package as the PREFERRED_PROVIDER
for libegl, libgles1, and libgles2 will result in a conflict
with mesa for these libraries.
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
---
.../conf/distro/include/arago-prefs.inc | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/meta-arago-distro/conf/distro/include/arago-prefs.inc b/meta-arago-distro/conf/distro/include/arago-prefs.inc
index 0885acf..b2e91ef 100644
--- a/meta-arago-distro/conf/distro/include/arago-prefs.inc
+++ b/meta-arago-distro/conf/distro/include/arago-prefs.inc
@@ -44,6 +44,10 @@ PREFERRED_PROVIDER_virtual/egl = "libgles-omap3"
PREFERRED_PROVIDER_virtual/libgles1 = "libgles-omap3"
PREFERRED_PROVIDER_virtual/libgles2 = "libgles-omap3"
+PREFERRED_PROVIDER_virtual/egl_omap-a15 = "omap5-sgx-ddk-um-linux"
+PREFERRED_PROVIDER_virtual/libgles1_omap-a15 = "omap5-sgx-ddk-um-linux"
+PREFERRED_PROVIDER_virtual/libgles2_omap-a15 = "omap5-sgx-ddk-um-linux"
+
PREFERRED_PROVIDER_virtual/libgl = "mesa-gl"
PREFERRED_PROVIDER_virtual/mesa = "mesa-gl"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 33+ messages in thread