* [PATCHv2] gbm: Add TI staging tree
@ 2013-07-01 8:33 Siddharth Heroor, Mrinmayee
2013-07-01 11:05 ` Siddharth Heroor
0 siblings, 1 reply; 2+ messages in thread
From: Siddharth Heroor, Mrinmayee @ 2013-07-01 8:33 UTC (permalink / raw)
To: meta-ti
* 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.
Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
Signed-off-by: Siddharth Heroor <heroor@ti.com>
---
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"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCHv2] gbm: Add TI staging tree
2013-07-01 8:33 [PATCHv2] gbm: Add TI staging tree Siddharth Heroor, Mrinmayee
@ 2013-07-01 11:05 ` Siddharth Heroor
0 siblings, 0 replies; 2+ messages in thread
From: Siddharth Heroor @ 2013-07-01 11:05 UTC (permalink / raw)
To: meta-ti
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 <mrinmayee@ti.com>
> Signed-off-by: Siddharth Heroor <heroor@ti.com>
> ---
> 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"
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-01 11:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-01 8:33 [PATCHv2] gbm: Add TI staging tree Siddharth Heroor, Mrinmayee
2013-07-01 11:05 ` Siddharth Heroor
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.