From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bear.ext.ti.com (bear.ext.ti.com [192.94.94.41]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 0D84AE0140D for ; Mon, 1 Jul 2013 04:05:49 -0700 (PDT) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id r61B5m0F009269 for ; Mon, 1 Jul 2013 06:05:48 -0500 Received: from DLEE70.ent.ti.com (dlee70.ent.ti.com [157.170.170.113]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id r61B5m1d025669 for ; Mon, 1 Jul 2013 06:05:48 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DLEE70.ent.ti.com (157.170.170.113) with Microsoft SMTP Server id 14.2.342.3; Mon, 1 Jul 2013 06:05:48 -0500 Received: from [172.24.158.133] (a0875592lt01.apr.dhcp.ti.com [172.24.158.133]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r61B5kYW005539; Mon, 1 Jul 2013 06:05:47 -0500 Message-ID: <51D1628A.1000907@ti.com> Date: Mon, 1 Jul 2013 16:35:46 +0530 From: Siddharth Heroor User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130620 Thunderbird/17.0.7 MIME-Version: 1.0 To: References: <20130701083333.GA4777@ti.com> In-Reply-To: <20130701083333.GA4777@ti.com> Subject: Re: [PATCHv2] gbm: Add TI staging tree X-BeenThere: meta-ti@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-ti layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Jul 2013 11:05:53 -0000 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit On 7/1/2013 2:03 PM, Siddharth Heroor wrote: > * This is the gbm frontend used by (for example) weston > compositor to load the GLES stack, and retrieve the > backing buffer objects behind an eglImage (created > with EGL_WAYLAND_BUFFER_WL), etc. The frontend is really > just a backend loader and shim. The backend library must > be provided by the GLES implementation. > * The original libgbm is actually part of mesa but in the TI > stack this is implemented as a separate and standalone package > hosted at git://git.ti.com/glsdk/libgbm.git > > v2: > * Cleaned up description and rewrote the commit. Please ignore this patch. I'm testing with a fresh patchset where we explicitly call the recipe as libgbm-glsdk to avoid confusion. We will set PREFERRED_PROVIDER etc.. in the glsdk branding. Sorry for the spam. > > Signed-off-by: Mrinmayee Hingolikar > Signed-off-by: Siddharth Heroor > --- > recipes-graphics/gbm/libgbm.inc | 10 ++++++++++ > recipes-graphics/gbm/libgbm_git.bb | 7 +++++++ > 2 files changed, 17 insertions(+), 0 deletions(-) > create mode 100644 recipes-graphics/gbm/libgbm.inc > create mode 100644 recipes-graphics/gbm/libgbm_git.bb > > diff --git a/recipes-graphics/gbm/libgbm.inc b/recipes-graphics/gbm/libgbm.inc > new file mode 100644 > index 0000000..8aad4af > --- /dev/null > +++ b/recipes-graphics/gbm/libgbm.inc > @@ -0,0 +1,10 @@ > +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" > +PROVIDES = "gbm" > + > +inherit autotools pkgconfig > + > +PACKAGES =+ "${PN}-dev" > +FILES_${PN}-dev = "${libdir}/libgbm_*.so.*" > diff --git a/recipes-graphics/gbm/libgbm_git.bb b/recipes-graphics/gbm/libgbm_git.bb > new file mode 100644 > index 0000000..d1fa38d > --- /dev/null > +++ b/recipes-graphics/gbm/libgbm_git.bb > @@ -0,0 +1,7 @@ > +require libgbm.inc > + > +SRC_URI = "git://git.ti.com/glsdk/libgbm.git;protocol=git" > + > +S = "${WORKDIR}/git" > + > +SRCREV = "cb86a2f2cecd41023bf1bf12fbcf11be11220f31" >