* [PATCHv3] gbm: Add TI staging tree
@ 2013-07-01 15:41 Siddharth Heroor, Mrinmayee
2013-07-09 4:15 ` Siddharth Heroor
0 siblings, 1 reply; 4+ messages in thread
From: Siddharth Heroor, Mrinmayee @ 2013-07-01 15:41 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
* In the Danny branch, oe-core/meta/recipes-graphics/mesa
has 8.0.0 as its version. For the GLSDK stack, the libgbm
is more in line with 9.0.0 mesa. The goal is to move over
to mesa for libgbm in future.
v2:
* Cleaned up description and rewrote the commit.
v3:
* Rename as libgbm-glsdk to avoid clash with mesa-libgbm.
Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
Signed-off-by: Siddharth Heroor <heroor@ti.com>
---
recipes-graphics/gbm/libgbm-glsdk.inc | 11 +++++++++++
recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb | 7 +++++++
2 files changed, 18 insertions(+), 0 deletions(-)
create mode 100644 recipes-graphics/gbm/libgbm-glsdk.inc
create mode 100644 recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
diff --git a/recipes-graphics/gbm/libgbm-glsdk.inc b/recipes-graphics/gbm/libgbm-glsdk.inc
new file mode 100644
index 0000000..2f3893e
--- /dev/null
+++ b/recipes-graphics/gbm/libgbm-glsdk.inc
@@ -0,0 +1,11 @@
+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 = "libgbm"
+
+COMPATIBLE_MACHINE = "omap-a15"
+
+DEFAULT_PREFERENCE = "-1"
+
+inherit autotools pkgconfig
diff --git a/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
new file mode 100644
index 0000000..e1e6adb
--- /dev/null
+++ b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
@@ -0,0 +1,7 @@
+require libgbm-glsdk.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] 4+ messages in thread
* Re: [PATCHv3] gbm: Add TI staging tree
2013-07-01 15:41 [PATCHv3] gbm: Add TI staging tree Siddharth Heroor, Mrinmayee
@ 2013-07-09 4:15 ` Siddharth Heroor
2013-07-09 16:48 ` Denys Dmytriyenko
0 siblings, 1 reply; 4+ messages in thread
From: Siddharth Heroor @ 2013-07-09 4:15 UTC (permalink / raw)
To: meta-ti
On 7/1/2013 9:11 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
> * In the Danny branch, oe-core/meta/recipes-graphics/mesa
> has 8.0.0 as its version. For the GLSDK stack, the libgbm
> is more in line with 9.0.0 mesa. The goal is to move over
> to mesa for libgbm in future.
>
> v2:
> * Cleaned up description and rewrote the commit.
>
> v3:
>
> * Rename as libgbm-glsdk to avoid clash with mesa-libgbm.
Ping! Any updates on this patch?
>
> Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
> Signed-off-by: Siddharth Heroor <heroor@ti.com>
> ---
> recipes-graphics/gbm/libgbm-glsdk.inc | 11 +++++++++++
> recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb | 7 +++++++
> 2 files changed, 18 insertions(+), 0 deletions(-)
> create mode 100644 recipes-graphics/gbm/libgbm-glsdk.inc
> create mode 100644 recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
>
> diff --git a/recipes-graphics/gbm/libgbm-glsdk.inc b/recipes-graphics/gbm/libgbm-glsdk.inc
> new file mode 100644
> index 0000000..2f3893e
> --- /dev/null
> +++ b/recipes-graphics/gbm/libgbm-glsdk.inc
> @@ -0,0 +1,11 @@
> +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 = "libgbm"
> +
> +COMPATIBLE_MACHINE = "omap-a15"
> +
> +DEFAULT_PREFERENCE = "-1"
> +
> +inherit autotools pkgconfig
> diff --git a/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
> new file mode 100644
> index 0000000..e1e6adb
> --- /dev/null
> +++ b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
> @@ -0,0 +1,7 @@
> +require libgbm-glsdk.inc
> +
> +SRC_URI = "git://git.ti.com/glsdk/libgbm.git;protocol=git"
> +
> +S = "${WORKDIR}/git"
> +
> +SRCREV = "cb86a2f2cecd41023bf1bf12fbcf11be11220f31"
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv3] gbm: Add TI staging tree
2013-07-09 4:15 ` Siddharth Heroor
@ 2013-07-09 16:48 ` Denys Dmytriyenko
2013-07-10 4:00 ` Siddharth Heroor
0 siblings, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2013-07-09 16:48 UTC (permalink / raw)
To: Siddharth Heroor; +Cc: meta-ti
On Tue, Jul 09, 2013 at 09:45:13AM +0530, Siddharth Heroor wrote:
> On 7/1/2013 9:11 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
> > * In the Danny branch, oe-core/meta/recipes-graphics/mesa
> > has 8.0.0 as its version. For the GLSDK stack, the libgbm
> > is more in line with 9.0.0 mesa. The goal is to move over
> > to mesa for libgbm in future.
> >
> > v2:
> > * Cleaned up description and rewrote the commit.
> >
> > v3:
> >
> > * Rename as libgbm-glsdk to avoid clash with mesa-libgbm.
>
> Ping! Any updates on this patch?
I thought the comment was the same as to other patches - if there's only one
version, please don't split out .inc file. Thanks.
In other words, in OE-Core/Yocto (unlike OE-Classic), the goal is to have just
one version of the recipe and keep it reasonably up to date. Exceptions are
allowed, but discouraged, hence need to be justified.
> > Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
> > Signed-off-by: Siddharth Heroor <heroor@ti.com>
> > ---
> > recipes-graphics/gbm/libgbm-glsdk.inc | 11 +++++++++++
> > recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb | 7 +++++++
> > 2 files changed, 18 insertions(+), 0 deletions(-)
> > create mode 100644 recipes-graphics/gbm/libgbm-glsdk.inc
> > create mode 100644 recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
> >
> > diff --git a/recipes-graphics/gbm/libgbm-glsdk.inc b/recipes-graphics/gbm/libgbm-glsdk.inc
> > new file mode 100644
> > index 0000000..2f3893e
> > --- /dev/null
> > +++ b/recipes-graphics/gbm/libgbm-glsdk.inc
> > @@ -0,0 +1,11 @@
> > +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 = "libgbm"
> > +
> > +COMPATIBLE_MACHINE = "omap-a15"
> > +
> > +DEFAULT_PREFERENCE = "-1"
> > +
> > +inherit autotools pkgconfig
> > diff --git a/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
> > new file mode 100644
> > index 0000000..e1e6adb
> > --- /dev/null
> > +++ b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
> > @@ -0,0 +1,7 @@
> > +require libgbm-glsdk.inc
> > +
> > +SRC_URI = "git://git.ti.com/glsdk/libgbm.git;protocol=git"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +SRCREV = "cb86a2f2cecd41023bf1bf12fbcf11be11220f31"
> >
>
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv3] gbm: Add TI staging tree
2013-07-09 16:48 ` Denys Dmytriyenko
@ 2013-07-10 4:00 ` Siddharth Heroor
0 siblings, 0 replies; 4+ messages in thread
From: Siddharth Heroor @ 2013-07-10 4:00 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-ti
On 7/9/2013 10:18 PM, Denys Dmytriyenko wrote:
> On Tue, Jul 09, 2013 at 09:45:13AM +0530, Siddharth Heroor wrote:
>> On 7/1/2013 9:11 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
>>> * In the Danny branch, oe-core/meta/recipes-graphics/mesa
>>> has 8.0.0 as its version. For the GLSDK stack, the libgbm
>>> is more in line with 9.0.0 mesa. The goal is to move over
>>> to mesa for libgbm in future.
>>>
>>> v2:
>>> * Cleaned up description and rewrote the commit.
>>>
>>> v3:
>>>
>>> * Rename as libgbm-glsdk to avoid clash with mesa-libgbm.
>>
>> Ping! Any updates on this patch?
>
> I thought the comment was the same as to other patches - if there's only one
> version, please don't split out .inc file. Thanks.
>
> In other words, in OE-Core/Yocto (unlike OE-Classic), the goal is to have just
> one version of the recipe and keep it reasonably up to date. Exceptions are
> allowed, but discouraged, hence need to be justified.
Missed this. Sorry about that. Will rework and send updated patch.
>
>
>>> Signed-off-by: Mrinmayee Hingolikar <mrinmayee@ti.com>
>>> Signed-off-by: Siddharth Heroor <heroor@ti.com>
>>> ---
>>> recipes-graphics/gbm/libgbm-glsdk.inc | 11 +++++++++++
>>> recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb | 7 +++++++
>>> 2 files changed, 18 insertions(+), 0 deletions(-)
>>> create mode 100644 recipes-graphics/gbm/libgbm-glsdk.inc
>>> create mode 100644 recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
>>>
>>> diff --git a/recipes-graphics/gbm/libgbm-glsdk.inc b/recipes-graphics/gbm/libgbm-glsdk.inc
>>> new file mode 100644
>>> index 0000000..2f3893e
>>> --- /dev/null
>>> +++ b/recipes-graphics/gbm/libgbm-glsdk.inc
>>> @@ -0,0 +1,11 @@
>>> +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 = "libgbm"
>>> +
>>> +COMPATIBLE_MACHINE = "omap-a15"
>>> +
>>> +DEFAULT_PREFERENCE = "-1"
>>> +
>>> +inherit autotools pkgconfig
>>> diff --git a/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
>>> new file mode 100644
>>> index 0000000..e1e6adb
>>> --- /dev/null
>>> +++ b/recipes-graphics/gbm/libgbm-glsdk_9.0.0.bb
>>> @@ -0,0 +1,7 @@
>>> +require libgbm-glsdk.inc
>>> +
>>> +SRC_URI = "git://git.ti.com/glsdk/libgbm.git;protocol=git"
>>> +
>>> +S = "${WORKDIR}/git"
>>> +
>>> +SRCREV = "cb86a2f2cecd41023bf1bf12fbcf11be11220f31"
>>>
>>
>> _______________________________________________
>> meta-ti mailing list
>> meta-ti@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/meta-ti
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-07-10 4:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-01 15:41 [PATCHv3] gbm: Add TI staging tree Siddharth Heroor, Mrinmayee
2013-07-09 4:15 ` Siddharth Heroor
2013-07-09 16:48 ` Denys Dmytriyenko
2013-07-10 4:00 ` 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.