All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos
@ 2015-11-04 20:00 Hongmei Gou
  2015-11-04 20:00 ` [PATCH 1/7] branding-processor-sdk: add back wayland DISTRO_FEATURES for ti43x Hongmei Gou
                   ` (6 more replies)
  0 siblings, 7 replies; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Enable hardware mode wayland for AM4, and update qtbase and SGX demos

Hongmei Gou (7):
  branding-processor-sdk: add back wayland DISTRO_FEATURES for ti43x
  arago.conf: enable hardware mode weston for ti43x
  qtbase: add wayland dependency for ti43x
  img-pvr-sdk: modify BRANCH and SRCREV to update the demos for ti43x
  kmscube: add support on ti43x
  matrix-gui-3d-demos: add kmscube for ti43x
  packagegroup-arago-tisdk-matrix: update the SGX demos for ti43x

 meta-arago-distro/conf/distro/arago.conf                     |  2 ++
 .../conf/distro/include/branding-processor-sdk.inc           |  3 +--
 .../packagegroups/packagegroup-arago-tisdk-matrix.bb         | 10 +++++++++-
 meta-arago-distro/recipes-qt/qt5/qtbase_%.bbappend           |  4 ++--
 .../recipes-core/matrix/matrix-gui-3d-demos_2.0.bb           |  6 +++++-
 .../recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb        | 12 ++++++------
 meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb  |  4 ++--
 7 files changed, 27 insertions(+), 14 deletions(-)

-- 
1.9.1



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

* [PATCH 1/7] branding-processor-sdk: add back wayland DISTRO_FEATURES for ti43x
  2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
@ 2015-11-04 20:00 ` Hongmei Gou
  2015-11-04 20:00 ` [PATCH 2/7] arago.conf: enable hardware mode weston " Hongmei Gou
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Hongmei Gou <h-gou@ti.com>
---
 meta-arago-distro/conf/distro/include/branding-processor-sdk.inc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-arago-distro/conf/distro/include/branding-processor-sdk.inc b/meta-arago-distro/conf/distro/include/branding-processor-sdk.inc
index 31507dc..0c5e41c 100644
--- a/meta-arago-distro/conf/distro/include/branding-processor-sdk.inc
+++ b/meta-arago-distro/conf/distro/include/branding-processor-sdk.inc
@@ -1,8 +1,7 @@
 ARAGO_TISDK_IMAGE = "processor-sdk-linux-image"
 
-# Remove wayland from ti33x and ti43x DISTRO_FEATURES.
+# Remove wayland from ti33x DISTRO_FEATURES.
 DISTRO_FEATURES_remove_ti33x = "wayland"
-DISTRO_FEATURES_remove_ti43x = "wayland"
 
 # Set CMEM reserved memory region
 CMEM_BASE_omap-a15 ?= "a0000000"
-- 
1.9.1



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

* [PATCH 2/7] arago.conf: enable hardware mode weston for ti43x
  2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
  2015-11-04 20:00 ` [PATCH 1/7] branding-processor-sdk: add back wayland DISTRO_FEATURES for ti43x Hongmei Gou
@ 2015-11-04 20:00 ` Hongmei Gou
  2015-11-04 20:00 ` [PATCH 3/7] qtbase: add wayland dependency " Hongmei Gou
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Hongmei Gou <h-gou@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index c26cbc9..5c33666 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -37,6 +37,8 @@ QT_PROVIDER ?= "qt5"
 PACKAGECONFIG_pn-weston = "fbdev kms launch libinput"
 PACKAGECONFIG_append_pn-weston_omap-a15 = " egl"
 PACKAGECONFIG_remove_pn-weston_omap-a15 = "fbdev"
+PACKAGECONFIG_append_pn-weston_ti43x    = " egl"
+PACKAGECONFIG_remove_pn-weston_ti43x    = "fbdev"
 
 # Configure Qt5 flags (GLES is still required for qtdeclarative and qtwebkit)
 PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb"
-- 
1.9.1



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

* [PATCH 3/7] qtbase: add wayland dependency for ti43x
  2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
  2015-11-04 20:00 ` [PATCH 1/7] branding-processor-sdk: add back wayland DISTRO_FEATURES for ti43x Hongmei Gou
  2015-11-04 20:00 ` [PATCH 2/7] arago.conf: enable hardware mode weston " Hongmei Gou
@ 2015-11-04 20:00 ` Hongmei Gou
  2015-11-04 20:00 ` [PATCH 4/7] img-pvr-sdk: modify BRANCH and SRCREV to update the demos " Hongmei Gou
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Hongmei Gou <h-gou@ti.com>
---
 meta-arago-distro/recipes-qt/qt5/qtbase_%.bbappend | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-distro/recipes-qt/qt5/qtbase_%.bbappend b/meta-arago-distro/recipes-qt/qt5/qtbase_%.bbappend
index 49b3a2b..19891e1 100644
--- a/meta-arago-distro/recipes-qt/qt5/qtbase_%.bbappend
+++ b/meta-arago-distro/recipes-qt/qt5/qtbase_%.bbappend
@@ -2,12 +2,12 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
 GLES_EXTRA_DEPS = ""
 GLES_EXTRA_DEPS_omap-a15 = "libdrm wayland"
-GLES_EXTRA_DEPS_ti43x = "libdrm"
+GLES_EXTRA_DEPS_ti43x = "libdrm wayland"
 GLES_EXTRA_DEPS_ti33x = "libdrm"
 
 PACKAGECONFIG[gles2] = "-opengl es2 -eglfs,,virtual/libgles2 virtual/egl ${GLES_EXTRA_DEPS}"
 
-PR_append = "-arago10"
+PR_append = "-arago11"
 
 QT_CONFIG_FLAGS += "-qpa ${@base_contains('DISTRO_FEATURES', 'wayland', 'wayland', 'eglfs', d)}"
 
-- 
1.9.1



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

* [PATCH 4/7] img-pvr-sdk: modify BRANCH and SRCREV to update the demos for ti43x
  2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
                   ` (2 preceding siblings ...)
  2015-11-04 20:00 ` [PATCH 3/7] qtbase: add wayland dependency " Hongmei Gou
@ 2015-11-04 20:00 ` Hongmei Gou
  2015-11-04 20:00 ` [PATCH 5/7] kmscube: add support on ti43x Hongmei Gou
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Hongmei Gou <h-gou@ti.com>
---
 .../recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb        | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb b/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb
index 96b7d5a..3c9727d 100644
--- a/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb
+++ b/meta-arago-extras/recipes-graphics/img-pvr-sdk/img-pvr-sdk_3.3.2.bb
@@ -6,14 +6,14 @@ CLEANBROKEN = "1"
 
 BRANCH_omap-a15 = "master"
 BRANCH_ti33x = "am4/k4.1"
-BRANCH_ti43x = "am4/k4.1"
+BRANCH_ti43x = "master"
 
 SRC_URI = "git://git.ti.com/graphics/img-pvr-sdk.git;protocol=git;branch=${BRANCH}"
 SRCREV_omap-a15 = "c2456ec3f03da022fb7489d6b381a4ac26a68203"
 SRCREV_ti33x = "f24650bc8243b25c23d6a0a502ed79fc472ac424"
-SRCREV_ti43x = "f24650bc8243b25c23d6a0a502ed79fc472ac424"
+SRCREV_ti43x = "c2456ec3f03da022fb7489d6b381a4ac26a68203"
 
-PR = "r4"
+PR = "r5"
 
 COMPATIBLE_MACHINE = "omap-a15|ti43x|ti33x"
 
@@ -41,9 +41,9 @@ do_install_append_ti33x () {
 }
 
 do_install_append_ti43x () {
-    install -m 755 ${S}/targetfs/Examples/Advanced/OGLES2MagicLantern ${D}${bindir}/SGX/demos/Raw/
-    install -m 755 ${S}/targetfs/Examples/Advanced/OGLESEvilSkull ${D}${bindir}/SGX/demos/Raw/
-    install -m 755 ${S}/targetfs/Examples/Advanced/OGLESFilmTV ${D}${bindir}/SGX/demos/Raw/
+    install -m 755 ${S}/targetfs/Examples/Advanced/OGLES2Coverflow ${D}${bindir}/SGX/demos/Raw/
+    install -m 755 ${S}/targetfs/Examples/Advanced/OGLES2ExampleUI ${D}${bindir}/SGX/demos/Raw/
+    install -m 755 ${S}/targetfs/Examples/Advanced/OGLES2Navigation ${D}${bindir}/SGX/demos/Raw/
 }
 
 INHIBIT_PACKAGE_STRIP = "1"
-- 
1.9.1



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

* [PATCH 5/7] kmscube: add support on ti43x
  2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
                   ` (3 preceding siblings ...)
  2015-11-04 20:00 ` [PATCH 4/7] img-pvr-sdk: modify BRANCH and SRCREV to update the demos " Hongmei Gou
@ 2015-11-04 20:00 ` Hongmei Gou
  2015-11-04 20:00 ` [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x Hongmei Gou
  2015-11-04 20:00 ` [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos " Hongmei Gou
  6 siblings, 0 replies; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Hongmei Gou <h-gou@ti.com>
---
 meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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
index f20bd5c..3e088d8 100644
--- a/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
+++ b/meta-arago-extras/recipes-graphics/kmscube/kmscube_1.0.0.bb
@@ -5,11 +5,11 @@ LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=e760965096e52da8
 
 DEPENDS = "libdrm libgbm omap5-sgx-ddk-um-linux"
 
-COMPATIBLE_MACHINE = "omap-a15"
+COMPATIBLE_MACHINE = "ti43x|omap-a15"
 
 inherit autotools pkgconfig
 
-PR = "r2"
+PR = "r3"
 SRCREV = "1c8a0d26c5b1918432fd94d2ac9894b3dcdb2814"
 
 SRC_URI = "git://git.ti.com/glsdk/kmscube.git;protocol=git"
-- 
1.9.1



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

* [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x
  2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
                   ` (4 preceding siblings ...)
  2015-11-04 20:00 ` [PATCH 5/7] kmscube: add support on ti43x Hongmei Gou
@ 2015-11-04 20:00 ` Hongmei Gou
  2015-11-04 20:05   ` Denys Dmytriyenko
  2015-11-04 20:00 ` [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos " Hongmei Gou
  6 siblings, 1 reply; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Hongmei Gou <h-gou@ti.com>
---
 meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
index 4373d5f..710bb75 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
 
 require matrix-gui-apps-git.inc
 
-PR = "${INC_PR}.5"
+PR = "${INC_PR}.6"
 
 S = "${WORKDIR}/git/3d_apps"
 
@@ -33,6 +33,10 @@ PACKAGES_append_omap-a15 = " \
             matrix-3d-demo-kmscubevideo \
 "
 
+PACKAGES_append_ti43x = " \
+            matrix-3d-demo-kmscube \
+"
+
 MATRIX_3D_DEMO_SGX_QAF_PARAM = "1000"
 
 do_install_prepend() {
-- 
1.9.1



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

* [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos for ti43x
  2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
                   ` (5 preceding siblings ...)
  2015-11-04 20:00 ` [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x Hongmei Gou
@ 2015-11-04 20:00 ` Hongmei Gou
  2015-11-04 20:06   ` Denys Dmytriyenko
  2015-11-09 19:40   ` Denys Dmytriyenko
  6 siblings, 2 replies; 16+ messages in thread
From: Hongmei Gou @ 2015-11-04 20:00 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Hongmei Gou <h-gou@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-matrix.bb           | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
index a6d1b39..a63b8ea 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "Task to include Matrix v2"
 LICENSE = "MIT"
-PR = "r45"
+PR = "r46"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
@@ -49,6 +49,14 @@ MATRIX_SGX_DEMOS_omap-a15 = " \
     matrix-3d-demo-kmscubevideo \
 "
 
+MATRIX_SGX_DEMOS_ti43x = " \
+    matrix-3d-demo-chameleon \
+    matrix-3d-demo-coverflow \
+    matrix-3d-demo-navigation \
+    matrix-3d-demo-exampleui \
+    matrix-3d-demo-kmscube \
+"
+
 MATRIX_QT_APPS_keystone = ""
 
 MATRIX_APPS = ""
-- 
1.9.1



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

* Re: [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x
  2015-11-04 20:00 ` [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x Hongmei Gou
@ 2015-11-04 20:05   ` Denys Dmytriyenko
  2015-11-04 21:11     ` Gou, Hongmei
  0 siblings, 1 reply; 16+ messages in thread
From: Denys Dmytriyenko @ 2015-11-04 20:05 UTC (permalink / raw)
  To: Hongmei Gou; +Cc: meta-arago

On Wed, Nov 04, 2015 at 03:00:16PM -0500, Hongmei Gou wrote:
> Signed-off-by: Hongmei Gou <h-gou@ti.com>
> ---
>  meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> index 4373d5f..710bb75 100644
> --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
>  
>  require matrix-gui-apps-git.inc
>  
> -PR = "${INC_PR}.5"
> +PR = "${INC_PR}.6"
>  
>  S = "${WORKDIR}/git/3d_apps"
>  
> @@ -33,6 +33,10 @@ PACKAGES_append_omap-a15 = " \
>              matrix-3d-demo-kmscubevideo \
>  "
>  
> +PACKAGES_append_ti43x = " \
> +            matrix-3d-demo-kmscube \

What about kmscubevideo one?


> +"
> +
>  MATRIX_3D_DEMO_SGX_QAF_PARAM = "1000"
>  
>  do_install_prepend() {
> -- 
> 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] 16+ messages in thread

* Re: [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos for ti43x
  2015-11-04 20:00 ` [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos " Hongmei Gou
@ 2015-11-04 20:06   ` Denys Dmytriyenko
  2015-11-04 21:12     ` Gou, Hongmei
  2015-11-09 19:40   ` Denys Dmytriyenko
  1 sibling, 1 reply; 16+ messages in thread
From: Denys Dmytriyenko @ 2015-11-04 20:06 UTC (permalink / raw)
  To: Hongmei Gou; +Cc: meta-arago

On Wed, Nov 04, 2015 at 03:00:17PM -0500, Hongmei Gou wrote:
> Signed-off-by: Hongmei Gou <h-gou@ti.com>
> ---
>  .../packagegroups/packagegroup-arago-tisdk-matrix.bb           | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> index a6d1b39..a63b8ea 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> @@ -1,6 +1,6 @@
>  DESCRIPTION = "Task to include Matrix v2"
>  LICENSE = "MIT"
> -PR = "r45"
> +PR = "r46"
>  
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
> @@ -49,6 +49,14 @@ MATRIX_SGX_DEMOS_omap-a15 = " \
>      matrix-3d-demo-kmscubevideo \
>  "
>  
> +MATRIX_SGX_DEMOS_ti43x = " \
> +    matrix-3d-demo-chameleon \
> +    matrix-3d-demo-coverflow \
> +    matrix-3d-demo-navigation \
> +    matrix-3d-demo-exampleui \
> +    matrix-3d-demo-kmscube \

Same question as before about kmscubevideo - that is used on omap-a15...


> +"
> +
>  MATRIX_QT_APPS_keystone = ""
>  
>  MATRIX_APPS = ""
> -- 
> 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] 16+ messages in thread

* Re: [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x
  2015-11-04 20:05   ` Denys Dmytriyenko
@ 2015-11-04 21:11     ` Gou, Hongmei
  2015-11-04 21:14       ` Denys Dmytriyenko
  0 siblings, 1 reply; 16+ messages in thread
From: Gou, Hongmei @ 2015-11-04 21:11 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

Please see below inline.

> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Wednesday, November 04, 2015 3:05 PM
> To: Gou, Hongmei
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 6/7] matrix-gui-3d-demos: add kmscube
> for ti43x
> 
> On Wed, Nov 04, 2015 at 03:00:16PM -0500, Hongmei Gou wrote:
> > Signed-off-by: Hongmei Gou <h-gou@ti.com>
> > ---
> >  meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb | 6
> > +++++-
> >  1 file changed, 5 insertions(+), 1 deletion(-)
> >
> > diff --git
> > a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> > b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> > index 4373d5f..710bb75 100644
> > --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> > +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-
> demos_2.0.bb
> > @@ -3,7 +3,7 @@ HOMEPAGE = "https://gitorious.org/matrix-gui-
> v2/matrix-gui-v2-apps"
> >
> >  require matrix-gui-apps-git.inc
> >
> > -PR = "${INC_PR}.5"
> > +PR = "${INC_PR}.6"
> >
> >  S = "${WORKDIR}/git/3d_apps"
> >
> > @@ -33,6 +33,10 @@ PACKAGES_append_omap-a15 = " \
> >              matrix-3d-demo-kmscubevideo \  "
> >
> > +PACKAGES_append_ti43x = " \
> > +            matrix-3d-demo-kmscube \
> 
> What about kmscubevideo one?

kmscubevideo is not supported for AM4, as the video decoding is running on IVAHD.

> 
> > +"
> > +
> >  MATRIX_3D_DEMO_SGX_QAF_PARAM = "1000"
> >
> >  do_install_prepend() {
> > --
> > 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] 16+ messages in thread

* Re: [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos for ti43x
  2015-11-04 20:06   ` Denys Dmytriyenko
@ 2015-11-04 21:12     ` Gou, Hongmei
  0 siblings, 0 replies; 16+ messages in thread
From: Gou, Hongmei @ 2015-11-04 21:12 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Wednesday, November 04, 2015 3:06 PM
> To: Gou, Hongmei
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 7/7] packagegroup-arago-tisdk-matrix:
> update the SGX demos for ti43x
> 
> On Wed, Nov 04, 2015 at 03:00:17PM -0500, Hongmei Gou wrote:
> > Signed-off-by: Hongmei Gou <h-gou@ti.com>
> > ---
> >  .../packagegroups/packagegroup-arago-tisdk-matrix.bb           | 10
> +++++++++-
> >  1 file changed, 9 insertions(+), 1 deletion(-)
> >
> > diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> arago-tisdk-matrix.bb b/meta-arago-distro/recipes-
> core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> > index a6d1b39..a63b8ea 100644
> > --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-
> tisdk-matrix.bb
> > +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> arago-tisdk-matrix.bb
> > @@ -1,6 +1,6 @@
> >  DESCRIPTION = "Task to include Matrix v2"
> >  LICENSE = "MIT"
> > -PR = "r45"
> > +PR = "r46"
> >
> >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> >
> > @@ -49,6 +49,14 @@ MATRIX_SGX_DEMOS_omap-a15 = " \
> >      matrix-3d-demo-kmscubevideo \
> >  "
> >
> > +MATRIX_SGX_DEMOS_ti43x = " \
> > +    matrix-3d-demo-chameleon \
> > +    matrix-3d-demo-coverflow \
> > +    matrix-3d-demo-navigation \
> > +    matrix-3d-demo-exampleui \
> > +    matrix-3d-demo-kmscube \
> 
> Same question as before about kmscubevideo - that is used on omap-a15...

kmscubevideo is not supported for AM4, as the video decoding is running on IVAHD.

> 
> > +"
> > +
> >  MATRIX_QT_APPS_keystone = ""
> >
> >  MATRIX_APPS = ""
> > --
> > 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] 16+ messages in thread

* Re: [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x
  2015-11-04 21:11     ` Gou, Hongmei
@ 2015-11-04 21:14       ` Denys Dmytriyenko
  0 siblings, 0 replies; 16+ messages in thread
From: Denys Dmytriyenko @ 2015-11-04 21:14 UTC (permalink / raw)
  To: Gou, Hongmei; +Cc: meta-arago@arago-project.org

On Wed, Nov 04, 2015 at 04:11:36PM -0500, Gou, Hongmei wrote:
> Please see below inline.
> 
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Wednesday, November 04, 2015 3:05 PM
> > To: Gou, Hongmei
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH 6/7] matrix-gui-3d-demos: add kmscube
> > for ti43x
> > 
> > On Wed, Nov 04, 2015 at 03:00:16PM -0500, Hongmei Gou wrote:
> > > Signed-off-by: Hongmei Gou <h-gou@ti.com>
> > > ---
> > >  meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb | 6
> > > +++++-
> > >  1 file changed, 5 insertions(+), 1 deletion(-)
> > >
> > > diff --git
> > > a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> > > b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> > > index 4373d5f..710bb75 100644
> > > --- a/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-demos_2.0.bb
> > > +++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-3d-
> > demos_2.0.bb
> > > @@ -3,7 +3,7 @@ HOMEPAGE = "https://gitorious.org/matrix-gui-
> > v2/matrix-gui-v2-apps"
> > >
> > >  require matrix-gui-apps-git.inc
> > >
> > > -PR = "${INC_PR}.5"
> > > +PR = "${INC_PR}.6"
> > >
> > >  S = "${WORKDIR}/git/3d_apps"
> > >
> > > @@ -33,6 +33,10 @@ PACKAGES_append_omap-a15 = " \
> > >              matrix-3d-demo-kmscubevideo \  "
> > >
> > > +PACKAGES_append_ti43x = " \
> > > +            matrix-3d-demo-kmscube \
> > 
> > What about kmscubevideo one?
> 
> kmscubevideo is not supported for AM4, as the video decoding is running on IVAHD.

Thanks


> > > +"
> > > +
> > >  MATRIX_3D_DEMO_SGX_QAF_PARAM = "1000"
> > >
> > >  do_install_prepend() {
> > > --
> > > 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] 16+ messages in thread

* Re: [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos for ti43x
  2015-11-04 20:00 ` [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos " Hongmei Gou
  2015-11-04 20:06   ` Denys Dmytriyenko
@ 2015-11-09 19:40   ` Denys Dmytriyenko
  2015-11-09 23:01     ` Gou, Hongmei
  1 sibling, 1 reply; 16+ messages in thread
From: Denys Dmytriyenko @ 2015-11-09 19:40 UTC (permalink / raw)
  To: Hongmei Gou; +Cc: meta-arago

Please rebase your patch with the recent opencl changes.


On Wed, Nov 04, 2015 at 03:00:17PM -0500, Hongmei Gou wrote:
> Signed-off-by: Hongmei Gou <h-gou@ti.com>
> ---
>  .../packagegroups/packagegroup-arago-tisdk-matrix.bb           | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> index a6d1b39..a63b8ea 100644
> --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> @@ -1,6 +1,6 @@
>  DESCRIPTION = "Task to include Matrix v2"
>  LICENSE = "MIT"
> -PR = "r45"
> +PR = "r46"
>  
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>  
> @@ -49,6 +49,14 @@ MATRIX_SGX_DEMOS_omap-a15 = " \
>      matrix-3d-demo-kmscubevideo \
>  "
>  
> +MATRIX_SGX_DEMOS_ti43x = " \
> +    matrix-3d-demo-chameleon \
> +    matrix-3d-demo-coverflow \
> +    matrix-3d-demo-navigation \
> +    matrix-3d-demo-exampleui \
> +    matrix-3d-demo-kmscube \
> +"
> +
>  MATRIX_QT_APPS_keystone = ""
>  
>  MATRIX_APPS = ""
> -- 
> 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] 16+ messages in thread

* Re: [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos for ti43x
  2015-11-09 19:40   ` Denys Dmytriyenko
@ 2015-11-09 23:01     ` Gou, Hongmei
  2015-11-10 15:51       ` Denys Dmytriyenko
  0 siblings, 1 reply; 16+ messages in thread
From: Gou, Hongmei @ 2015-11-09 23:01 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

Patch is rebased and submitted.

> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Monday, November 09, 2015 2:40 PM
> To: Gou, Hongmei
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 7/7] packagegroup-arago-tisdk-matrix:
> update the SGX demos for ti43x
> 
> Please rebase your patch with the recent opencl changes.
> 
> 
> On Wed, Nov 04, 2015 at 03:00:17PM -0500, Hongmei Gou wrote:
> > Signed-off-by: Hongmei Gou <h-gou@ti.com>
> > ---
> >  .../packagegroups/packagegroup-arago-tisdk-matrix.bb           | 10
> +++++++++-
> >  1 file changed, 9 insertions(+), 1 deletion(-)
> >
> > diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> arago-tisdk-matrix.bb b/meta-arago-distro/recipes-
> core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> > index a6d1b39..a63b8ea 100644
> > --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-
> tisdk-matrix.bb
> > +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> arago-tisdk-matrix.bb
> > @@ -1,6 +1,6 @@
> >  DESCRIPTION = "Task to include Matrix v2"
> >  LICENSE = "MIT"
> > -PR = "r45"
> > +PR = "r46"
> >
> >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> >
> > @@ -49,6 +49,14 @@ MATRIX_SGX_DEMOS_omap-a15 = " \
> >      matrix-3d-demo-kmscubevideo \
> >  "
> >
> > +MATRIX_SGX_DEMOS_ti43x = " \
> > +    matrix-3d-demo-chameleon \
> > +    matrix-3d-demo-coverflow \
> > +    matrix-3d-demo-navigation \
> > +    matrix-3d-demo-exampleui \
> > +    matrix-3d-demo-kmscube \
> > +"
> > +
> >  MATRIX_QT_APPS_keystone = ""
> >
> >  MATRIX_APPS = ""
> > --
> > 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] 16+ messages in thread

* Re: [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos for ti43x
  2015-11-09 23:01     ` Gou, Hongmei
@ 2015-11-10 15:51       ` Denys Dmytriyenko
  0 siblings, 0 replies; 16+ messages in thread
From: Denys Dmytriyenko @ 2015-11-10 15:51 UTC (permalink / raw)
  To: Gou, Hongmei; +Cc: meta-arago@arago-project.org

Thanks, pushed.

On Mon, Nov 09, 2015 at 06:01:43PM -0500, Gou, Hongmei wrote:
> Patch is rebased and submitted.
> 
> > -----Original Message-----
> > From: Dmytriyenko, Denys
> > Sent: Monday, November 09, 2015 2:40 PM
> > To: Gou, Hongmei
> > Cc: meta-arago@arago-project.org
> > Subject: Re: [meta-arago] [PATCH 7/7] packagegroup-arago-tisdk-matrix:
> > update the SGX demos for ti43x
> > 
> > Please rebase your patch with the recent opencl changes.
> > 
> > 
> > On Wed, Nov 04, 2015 at 03:00:17PM -0500, Hongmei Gou wrote:
> > > Signed-off-by: Hongmei Gou <h-gou@ti.com>
> > > ---
> > >  .../packagegroups/packagegroup-arago-tisdk-matrix.bb           | 10
> > +++++++++-
> > >  1 file changed, 9 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> > arago-tisdk-matrix.bb b/meta-arago-distro/recipes-
> > core/packagegroups/packagegroup-arago-tisdk-matrix.bb
> > > index a6d1b39..a63b8ea 100644
> > > --- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-
> > tisdk-matrix.bb
> > > +++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-
> > arago-tisdk-matrix.bb
> > > @@ -1,6 +1,6 @@
> > >  DESCRIPTION = "Task to include Matrix v2"
> > >  LICENSE = "MIT"
> > > -PR = "r45"
> > > +PR = "r46"
> > >
> > >  PACKAGE_ARCH = "${MACHINE_ARCH}"
> > >
> > > @@ -49,6 +49,14 @@ MATRIX_SGX_DEMOS_omap-a15 = " \
> > >      matrix-3d-demo-kmscubevideo \
> > >  "
> > >
> > > +MATRIX_SGX_DEMOS_ti43x = " \
> > > +    matrix-3d-demo-chameleon \
> > > +    matrix-3d-demo-coverflow \
> > > +    matrix-3d-demo-navigation \
> > > +    matrix-3d-demo-exampleui \
> > > +    matrix-3d-demo-kmscube \
> > > +"
> > > +
> > >  MATRIX_QT_APPS_keystone = ""
> > >
> > >  MATRIX_APPS = ""
> > > --
> > > 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] 16+ messages in thread

end of thread, other threads:[~2015-11-10 15:52 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-04 20:00 [PATCH 0/7] Enable hardware mode wayland for AM4, and update qtbase and SGX demos Hongmei Gou
2015-11-04 20:00 ` [PATCH 1/7] branding-processor-sdk: add back wayland DISTRO_FEATURES for ti43x Hongmei Gou
2015-11-04 20:00 ` [PATCH 2/7] arago.conf: enable hardware mode weston " Hongmei Gou
2015-11-04 20:00 ` [PATCH 3/7] qtbase: add wayland dependency " Hongmei Gou
2015-11-04 20:00 ` [PATCH 4/7] img-pvr-sdk: modify BRANCH and SRCREV to update the demos " Hongmei Gou
2015-11-04 20:00 ` [PATCH 5/7] kmscube: add support on ti43x Hongmei Gou
2015-11-04 20:00 ` [PATCH 6/7] matrix-gui-3d-demos: add kmscube for ti43x Hongmei Gou
2015-11-04 20:05   ` Denys Dmytriyenko
2015-11-04 21:11     ` Gou, Hongmei
2015-11-04 21:14       ` Denys Dmytriyenko
2015-11-04 20:00 ` [PATCH 7/7] packagegroup-arago-tisdk-matrix: update the SGX demos " Hongmei Gou
2015-11-04 20:06   ` Denys Dmytriyenko
2015-11-04 21:12     ` Gou, Hongmei
2015-11-09 19:40   ` Denys Dmytriyenko
2015-11-09 23:01     ` Gou, Hongmei
2015-11-10 15:51       ` 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.