From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from comal.ext.ti.com (comal.ext.ti.com [198.47.26.152]) by arago-project.org (Postfix) with ESMTPS id B74B9529CF for ; Thu, 25 Feb 2016 19:58:20 +0000 (UTC) Received: from dflxv15.itg.ti.com ([128.247.5.124]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id u1PJwKGe016125 for ; Thu, 25 Feb 2016 13:58:20 -0600 Received: from DFLE72.ent.ti.com (dfle72.ent.ti.com [128.247.5.109]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id u1PJwKaE010426 for ; Thu, 25 Feb 2016 13:58:20 -0600 Received: from dflp33.itg.ti.com (10.64.6.16) by DFLE72.ent.ti.com (128.247.5.109) with Microsoft SMTP Server id 14.3.224.2; Thu, 25 Feb 2016 13:58:19 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id u1PJwFoX022290; Thu, 25 Feb 2016 13:58:17 -0600 Date: Thu, 25 Feb 2016 14:58:00 -0500 From: Denys Dmytriyenko To: Eric Ruei Message-ID: <20160225195757.GL29852@edge> References: <1456429618-35160-1-git-send-email-e-ruei1@ti.com> MIME-Version: 1.0 In-Reply-To: <1456429618-35160-1-git-send-email-e-ruei1@ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: meta-arago@arago-project.org Subject: Re: [PATCH] Enable Wayland/DRM-based graphics support on AM3 X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Feb 2016 19:58:21 -0000 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline http://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines On Thu, Feb 25, 2016 at 02:46:58PM -0500, Eric Ruei wrote: > - Retain "wayland" within DISTRO_FEATURES of AM3 > - Replace "fbdev" with "egl" in weston plugin list > - Use the same set of 3D demos in Matrix Gui on AM3/4 > - Enable kmscube on AM3 > > Signed-off-by: Eric Ruei > --- > meta-arago-distro/conf/distro/arago.conf | 5 ++++- > .../conf/distro/include/branding-processor-sdk.inc | 3 --- > .../packagegroups/packagegroup-arago-tisdk-matrix.bb | 10 +++++++++- > .../recipes-core/matrix/matrix-gui-3d-demos_2.0.bb | 6 +++++- > 4 files changed, 18 insertions(+), 6 deletions(-) > > diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf > index f4f499e..98efdfe 100644 > --- a/meta-arago-distro/conf/distro/arago.conf > +++ b/meta-arago-distro/conf/distro/arago.conf > @@ -43,7 +43,10 @@ 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" > +PACKAGECONFIG_remove_pn-weston_ti43x = "fbdev" > +PACKAGECONFIG_append_pn-weston_ti33x = " egl" > +PACKAGECONFIG_remove_pn-weston_ti33x = "fbdev" > + > > # Configure Qt5 flags (GLES is still required for qtdeclarative and qtwebkit) > PACKAGECONFIG_GL_pn-qtbase = "gles2 linuxfb" > 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 0c5e41c..bd51f76 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,5 @@ > ARAGO_TISDK_IMAGE = "processor-sdk-linux-image" > > -# Remove wayland from ti33x DISTRO_FEATURES. > -DISTRO_FEATURES_remove_ti33x = "wayland" > - > # Set CMEM reserved memory region > CMEM_BASE_omap-a15 ?= "a0000000" > CMEM_SIZE_omap-a15 ?= "08000000" > 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 75866d2..11ff899 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 = "r50" > +PR = "r51" > > PACKAGE_ARCH = "${MACHINE_ARCH}" > > @@ -57,6 +57,14 @@ MATRIX_SGX_DEMOS_ti43x = " \ > matrix-3d-demo-kmscube \ > " > > +MATRIX_SGX_DEMOS_ti33x = " \ > + 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 = "" > 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 710bb75..f9d3f30 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}.6" > +PR = "${INC_PR}.7" > > S = "${WORKDIR}/git/3d_apps" > > @@ -37,6 +37,10 @@ PACKAGES_append_ti43x = " \ > matrix-3d-demo-kmscube \ > " > > +PACKAGES_append_ti33x = " \ > + matrix-3d-demo-kmscube \ > +" > + > 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