* [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build
@ 2013-11-06 11:30 alex.gonzalez
2013-11-06 11:31 ` [meta-fsl-arm][PATCH 1/2] mesa: Follow OE-core update to version 9.2.2 alex.gonzalez
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: alex.gonzalez @ 2013-11-06 11:30 UTC (permalink / raw)
To: meta-freescale
From: Alex Gonzalez <alex.gonzalez@digi.com>
The following is meant to fix the fsl-image-gui build issues with
meta-fsl-arm master-next branch and poky/meta-oe master.
Alex Gonzalez (2):
mesa: Follow OE-core update to version 9.2.2
gst-fsl-plugin: Remove GST_INFO patch.
recipes-graphics/mesa/mesa_9.1.6.bbappend | 40 --------------------
recipes-graphics/mesa/mesa_9.2.2.bbappend | 40 ++++++++++++++++++++
.../remove-GST_INFO-in-mfw_gst_utils.h.patch | 40 --------------------
.../gst-plugins/gst-fsl-plugin_3.0.9.bb | 3 +-
4 files changed, 41 insertions(+), 82 deletions(-)
delete mode 100644 recipes-graphics/mesa/mesa_9.1.6.bbappend
create mode 100644 recipes-graphics/mesa/mesa_9.2.2.bbappend
delete mode 100644 recipes-multimedia/gst-plugins/gst-fsl-plugin/remove-GST_INFO-in-mfw_gst_utils.h.patch
^ permalink raw reply [flat|nested] 12+ messages in thread* [meta-fsl-arm][PATCH 1/2] mesa: Follow OE-core update to version 9.2.2 2013-11-06 11:30 [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build alex.gonzalez @ 2013-11-06 11:31 ` alex.gonzalez 2013-11-06 11:41 ` Otavio Salvador 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch alex.gonzalez 2013-11-06 11:42 ` [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build Otavio Salvador 2 siblings, 1 reply; 12+ messages in thread From: alex.gonzalez @ 2013-11-06 11:31 UTC (permalink / raw) To: meta-freescale From: Alex Gonzalez <alex.gonzalez@digi.com> Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> --- recipes-graphics/mesa/mesa_9.1.6.bbappend | 40 ----------------------------- recipes-graphics/mesa/mesa_9.2.2.bbappend | 40 +++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 40 deletions(-) delete mode 100644 recipes-graphics/mesa/mesa_9.1.6.bbappend create mode 100644 recipes-graphics/mesa/mesa_9.2.2.bbappend diff --git a/recipes-graphics/mesa/mesa_9.1.6.bbappend b/recipes-graphics/mesa/mesa_9.1.6.bbappend deleted file mode 100644 index 9975abc..0000000 --- a/recipes-graphics/mesa/mesa_9.1.6.bbappend +++ /dev/null @@ -1,40 +0,0 @@ -# FIXME: We may need to disable EGL, GL ES1 and GL ES2 -python __anonymous () { - import re - - # SoC families to work on - families = ['mx5', 'mx6'] - cur_soc_families = d.getVar('SOC_FAMILY', True) - if cur_soc_families and \ - any(map(lambda x: x in cur_soc_families.split(':'), families)): - # Remove egl gles1 and gles2 configure options - extra_oeconf = d.getVar('EXTRA_OECONF', True).split() - take_out = ['--enable-egl', '--enable-gles1', '--enable-gles2'] - put_in = ['--disable-egl', '--disable-gles1', '--disable-gles2'] - pattern = re.compile("--with-egl-platforms") - new_extra_oeconf = [] - for i in extra_oeconf: - if i not in take_out and not pattern.match(i): - new_extra_oeconf.append(i) - for i in put_in: - new_extra_oeconf.append(i) - - d.setVar('EXTRA_OECONF', ' '.join(new_extra_oeconf)) - - # Remove itens from provides - provides = d.getVar('PROVIDES', True).split() - take_out = ['virtual/libgles1', 'virtual/libgles2', 'virtual/egl'] - if 'mx6' in cur_soc_families.split(':'): - take_out.append('virtual/libgl') - new_provides = [] - for i in provides: - if i not in take_out: - new_provides.append(i) - - d.setVar('PROVIDES', ' '.join(new_provides)) -} - -# FIXME: Dirty hack to allow use of Vivante GPU libGL binary -do_install_append_mx6 () { - rm -f ${D}${libdir}/libGL.* -} diff --git a/recipes-graphics/mesa/mesa_9.2.2.bbappend b/recipes-graphics/mesa/mesa_9.2.2.bbappend new file mode 100644 index 0000000..9975abc --- /dev/null +++ b/recipes-graphics/mesa/mesa_9.2.2.bbappend @@ -0,0 +1,40 @@ +# FIXME: We may need to disable EGL, GL ES1 and GL ES2 +python __anonymous () { + import re + + # SoC families to work on + families = ['mx5', 'mx6'] + cur_soc_families = d.getVar('SOC_FAMILY', True) + if cur_soc_families and \ + any(map(lambda x: x in cur_soc_families.split(':'), families)): + # Remove egl gles1 and gles2 configure options + extra_oeconf = d.getVar('EXTRA_OECONF', True).split() + take_out = ['--enable-egl', '--enable-gles1', '--enable-gles2'] + put_in = ['--disable-egl', '--disable-gles1', '--disable-gles2'] + pattern = re.compile("--with-egl-platforms") + new_extra_oeconf = [] + for i in extra_oeconf: + if i not in take_out and not pattern.match(i): + new_extra_oeconf.append(i) + for i in put_in: + new_extra_oeconf.append(i) + + d.setVar('EXTRA_OECONF', ' '.join(new_extra_oeconf)) + + # Remove itens from provides + provides = d.getVar('PROVIDES', True).split() + take_out = ['virtual/libgles1', 'virtual/libgles2', 'virtual/egl'] + if 'mx6' in cur_soc_families.split(':'): + take_out.append('virtual/libgl') + new_provides = [] + for i in provides: + if i not in take_out: + new_provides.append(i) + + d.setVar('PROVIDES', ' '.join(new_provides)) +} + +# FIXME: Dirty hack to allow use of Vivante GPU libGL binary +do_install_append_mx6 () { + rm -f ${D}${libdir}/libGL.* +} ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 1/2] mesa: Follow OE-core update to version 9.2.2 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 1/2] mesa: Follow OE-core update to version 9.2.2 alex.gonzalez @ 2013-11-06 11:41 ` Otavio Salvador 0 siblings, 0 replies; 12+ messages in thread From: Otavio Salvador @ 2013-11-06 11:41 UTC (permalink / raw) To: Gonzalez, Alex; +Cc: meta-freescale@yoctoproject.org On Wed, Nov 6, 2013 at 9:31 AM, <alex.gonzalez@digi.com> wrote: > From: Alex Gonzalez <alex.gonzalez@digi.com> > > Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> This has been done in master some days ago but I think I forgot to push master-next; just did it. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 12+ messages in thread
* [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 11:30 [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build alex.gonzalez 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 1/2] mesa: Follow OE-core update to version 9.2.2 alex.gonzalez @ 2013-11-06 11:31 ` alex.gonzalez 2013-11-06 11:45 ` Otavio Salvador 2013-11-06 11:42 ` [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build Otavio Salvador 2 siblings, 1 reply; 12+ messages in thread From: alex.gonzalez @ 2013-11-06 11:31 UTC (permalink / raw) To: meta-freescale From: Alex Gonzalez <alex.gonzalez@digi.com> This patch was carried forward from 3.0.8 and it fails to apply. The patch was meant to fix some macro definition errors which do not happen now. Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> --- .../remove-GST_INFO-in-mfw_gst_utils.h.patch | 40 -------------------- .../gst-plugins/gst-fsl-plugin_3.0.9.bb | 3 +- 2 files changed, 1 insertion(+), 42 deletions(-) delete mode 100644 recipes-multimedia/gst-plugins/gst-fsl-plugin/remove-GST_INFO-in-mfw_gst_utils.h.patch diff --git a/recipes-multimedia/gst-plugins/gst-fsl-plugin/remove-GST_INFO-in-mfw_gst_utils.h.patch b/recipes-multimedia/gst-plugins/gst-fsl-plugin/remove-GST_INFO-in-mfw_gst_utils.h.patch deleted file mode 100644 index c4dac2b..0000000 --- a/recipes-multimedia/gst-plugins/gst-fsl-plugin/remove-GST_INFO-in-mfw_gst_utils.h.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 28ad25933dc51d8af13927a9943a353677c31a3a Mon Sep 17 00:00:00 2001 -From: Lyon Wang <lyon.wang@freescale.com> -Date: Tue, 22 Oct 2013 16:15:43 +0800 -Subject: [PATCH] remove GST_INFO in mfw_gst_utils.h - -GST_INFO() should not be used in the global header -or it will cause some macro definiation error. - -so comment the GST_INFO() in the mfw_gst_utils.h - -Upstream-Status: Backport [GIT] ---- - fsl_mm_linux/Multimedia/inc/plugin/mfw_gst_utils.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/fsl_mm_linux/Multimedia/inc/plugin/mfw_gst_utils.h b/fsl_mm_linux/Multimedia/inc/plugin/mfw_gst_utils.h -index 366d50e..c1b6f90 100755 ---- a/fsl_mm_linux/Multimedia/inc/plugin/mfw_gst_utils.h -+++ b/fsl_mm_linux/Multimedia/inc/plugin/mfw_gst_utils.h -@@ -876,7 +876,7 @@ getChipCodeFromSocid (void) - } - fclose(fp); - -- GST_INFO("SOC is %s\n", soc_name); -+ //GST_INFO("SOC is %s\n", soc_name); - - int num = sizeof(soc_info) / sizeof(SOC_INFO); - int i; -@@ -913,7 +913,7 @@ getChipCode (void) - } - - kv = ((kv_major << 16) + (kv_minor << 8) + kv_rel); -- GST_INFO("kernel:%s, %d.%d.%d\n", sys_name.release, kv_major, kv_minor, kv_rel); -+ //GST_INFO("kernel:%s, %d.%d.%d\n", sys_name.release, kv_major, kv_minor, kv_rel); - - if (kv < KERN_VER(3, 10, 0)) - return getChipCodeFromCpuinfo(); --- -1.7.9.5 - diff --git a/recipes-multimedia/gst-plugins/gst-fsl-plugin_3.0.9.bb b/recipes-multimedia/gst-plugins/gst-fsl-plugin_3.0.9.bb index 4e26719..b95f576 100644 --- a/recipes-multimedia/gst-plugins/gst-fsl-plugin_3.0.9.bb +++ b/recipes-multimedia/gst-plugins/gst-fsl-plugin_3.0.9.bb @@ -5,8 +5,7 @@ require gst-fsl-plugin.inc SRC_URI[md5sum] = "a338a5c25225c765ae5f44af82fe7413" SRC_URI[sha256sum] = "e809daa0cd60381f05a79f34a53305a5ee53bfed22192a1cda6d998acc84a6fd" -SRC_URI = "${FSL_MIRROR}/gst-fsl-plugins-3.10.9-1.0.0.tar.gz \ - file://remove-GST_INFO-in-mfw_gst_utils.h.patch" +SRC_URI = "${FSL_MIRROR}/gst-fsl-plugins-3.10.9-1.0.0.tar.gz" S = "${WORKDIR}/gst-fsl-plugins-3.10.9-1.0.0" ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch alex.gonzalez @ 2013-11-06 11:45 ` Otavio Salvador 2013-11-06 11:51 ` Daiane Angolini 2013-11-06 11:57 ` Gonzalez, Alex 0 siblings, 2 replies; 12+ messages in thread From: Otavio Salvador @ 2013-11-06 11:45 UTC (permalink / raw) To: Gonzalez, Alex; +Cc: meta-freescale@yoctoproject.org On Wed, Nov 6, 2013 at 9:31 AM, <alex.gonzalez@digi.com> wrote: > From: Alex Gonzalez <alex.gonzalez@digi.com> > > This patch was carried forward from 3.0.8 and it fails to apply. The patch > was meant to fix some macro definition errors which do not happen now. > > Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> This patch is need for mx28evk; I pushed the master-next with the fixed patch. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 11:45 ` Otavio Salvador @ 2013-11-06 11:51 ` Daiane Angolini 2013-11-06 12:34 ` Otavio Salvador 2013-11-06 11:57 ` Gonzalez, Alex 1 sibling, 1 reply; 12+ messages in thread From: Daiane Angolini @ 2013-11-06 11:51 UTC (permalink / raw) To: Otavio Salvador, Gonzalez, Alex; +Cc: meta-freescale@yoctoproject.org On 06-11-2013 09:45, Otavio Salvador wrote: > On Wed, Nov 6, 2013 at 9:31 AM, <alex.gonzalez@digi.com> wrote: >> From: Alex Gonzalez <alex.gonzalez@digi.com> >> >> This patch was carried forward from 3.0.8 and it fails to apply. The patch >> was meant to fix some macro definition errors which do not happen now. >> >> Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> > > This patch is need for mx28evk; I pushed the master-next with the fixed patch. > Where? Please, share me the link to commit on gitweb -- Daiane ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 11:51 ` Daiane Angolini @ 2013-11-06 12:34 ` Otavio Salvador 0 siblings, 0 replies; 12+ messages in thread From: Otavio Salvador @ 2013-11-06 12:34 UTC (permalink / raw) To: Daiane Angolini; +Cc: meta-freescale@yoctoproject.org On Wed, Nov 6, 2013 at 9:51 AM, Daiane Angolini <daiane.angolini@freescale.com> wrote: > On 06-11-2013 09:45, Otavio Salvador wrote: >> >> On Wed, Nov 6, 2013 at 9:31 AM, <alex.gonzalez@digi.com> wrote: >>> >>> From: Alex Gonzalez <alex.gonzalez@digi.com> >>> >>> This patch was carried forward from 3.0.8 and it fails to apply. The >>> patch >>> was meant to fix some macro definition errors which do not happen now. >>> >>> Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> >> >> >> This patch is need for mx28evk; I pushed the master-next with the fixed >> patch. >> > > Where? > Please, share me the link to commit on gitweb http://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-arm/diff/recipes-multimedia/gst-plugins/gst-fsl-plugin/remove-GST_INFO-in-mfw_gst_utils.h.patch?h=master-next&id=9135a32b50800cac2c3feb0bac1f19c3d6743add -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 11:45 ` Otavio Salvador 2013-11-06 11:51 ` Daiane Angolini @ 2013-11-06 11:57 ` Gonzalez, Alex 2013-11-06 12:35 ` Otavio Salvador 1 sibling, 1 reply; 12+ messages in thread From: Gonzalez, Alex @ 2013-11-06 11:57 UTC (permalink / raw) To: Otavio Salvador; +Cc: meta-freescale@yoctoproject.org Thanks Otavio. Just curious, why does the mx28evk need gst-fsl-plugin at all? It has no video hardware acceleration that gstreamer uses, has it? Alex -----Original Message----- From: otavio.salvador@gmail.com [mailto:otavio.salvador@gmail.com] On Behalf Of Otavio Salvador Sent: miércoles, 06 de noviembre de 2013 12:45 To: Gonzalez, Alex Cc: meta-freescale@yoctoproject.org Subject: Re: [meta-freescale] [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. On Wed, Nov 6, 2013 at 9:31 AM, <alex.gonzalez@digi.com> wrote: > From: Alex Gonzalez <alex.gonzalez@digi.com> > > This patch was carried forward from 3.0.8 and it fails to apply. The patch > was meant to fix some macro definition errors which do not happen now. > > Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> This patch is need for mx28evk; I pushed the master-next with the fixed patch. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 11:57 ` Gonzalez, Alex @ 2013-11-06 12:35 ` Otavio Salvador 2013-11-06 15:09 ` Fabio Estevam 0 siblings, 1 reply; 12+ messages in thread From: Otavio Salvador @ 2013-11-06 12:35 UTC (permalink / raw) To: Gonzalez, Alex; +Cc: meta-freescale@yoctoproject.org On Wed, Nov 6, 2013 at 9:57 AM, Gonzalez, Alex <Alex.Gonzalez@digi.com> wrote: > Thanks Otavio. > > Just curious, why does the mx28evk need gst-fsl-plugin at all? It has no video hardware acceleration that gstreamer uses, has it? To use the FSL's software optimized codecs; in fact I am not sure it is a real gain but some customers want it and FSL's BSP has it so we support it. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 12:35 ` Otavio Salvador @ 2013-11-06 15:09 ` Fabio Estevam 2013-11-06 15:27 ` Otavio Salvador 0 siblings, 1 reply; 12+ messages in thread From: Fabio Estevam @ 2013-11-06 15:09 UTC (permalink / raw) To: Otavio Salvador; +Cc: meta-freescale@yoctoproject.org On Wed, Nov 6, 2013 at 10:35 AM, Otavio Salvador <otavio@ossystems.com.br> wrote: > On Wed, Nov 6, 2013 at 9:57 AM, Gonzalez, Alex <Alex.Gonzalez@digi.com> wrote: >> Thanks Otavio. >> >> Just curious, why does the mx28evk need gst-fsl-plugin at all? It has no video hardware acceleration that gstreamer uses, has it? > > To use the FSL's software optimized codecs; in fact I am not sure it > is a real gain but some customers want it and FSL's BSP has it so we > support it. IMHO we should use the standard Gstreamer components on mx28 instead of gst-fsl-plugin. Last time I measured the difference in performance on MP3 decoding was close to nothing. Regards, Fabio Estevam ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch. 2013-11-06 15:09 ` Fabio Estevam @ 2013-11-06 15:27 ` Otavio Salvador 0 siblings, 0 replies; 12+ messages in thread From: Otavio Salvador @ 2013-11-06 15:27 UTC (permalink / raw) To: Fabio Estevam; +Cc: meta-freescale@yoctoproject.org On Wed, Nov 6, 2013 at 1:09 PM, Fabio Estevam <festevam@gmail.com> wrote: > On Wed, Nov 6, 2013 at 10:35 AM, Otavio Salvador > <otavio@ossystems.com.br> wrote: >> On Wed, Nov 6, 2013 at 9:57 AM, Gonzalez, Alex <Alex.Gonzalez@digi.com> wrote: >>> Thanks Otavio. >>> >>> Just curious, why does the mx28evk need gst-fsl-plugin at all? It has no video hardware acceleration that gstreamer uses, has it? >> >> To use the FSL's software optimized codecs; in fact I am not sure it >> is a real gain but some customers want it and FSL's BSP has it so we >> support it. > > IMHO we should use the standard Gstreamer components on mx28 instead > of gst-fsl-plugin. > > Last time I measured the difference in performance on MP3 decoding was > close to nothing. Personally I agree with you but I think we need to support the FSL codecs as well as it is how MX28 BSP is officially released. When/if FSL drops the official support to gst-fsl-plugin for MX28 then we should drop it as well. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build 2013-11-06 11:30 [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build alex.gonzalez 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 1/2] mesa: Follow OE-core update to version 9.2.2 alex.gonzalez 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch alex.gonzalez @ 2013-11-06 11:42 ` Otavio Salvador 2 siblings, 0 replies; 12+ messages in thread From: Otavio Salvador @ 2013-11-06 11:42 UTC (permalink / raw) To: Gonzalez, Alex; +Cc: meta-freescale@yoctoproject.org On Wed, Nov 6, 2013 at 9:30 AM, <alex.gonzalez@digi.com> wrote: > From: Alex Gonzalez <alex.gonzalez@digi.com> > > The following is meant to fix the fsl-image-gui build issues with > meta-fsl-arm master-next branch and poky/meta-oe master. Please retest master-next; I pushed my working version ... sorry for that, I forgot to push it. -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2013-11-06 15:27 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-11-06 11:30 [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build alex.gonzalez 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 1/2] mesa: Follow OE-core update to version 9.2.2 alex.gonzalez 2013-11-06 11:41 ` Otavio Salvador 2013-11-06 11:31 ` [meta-fsl-arm][PATCH 2/2] gst-fsl-plugin: Remove GST_INFO patch alex.gonzalez 2013-11-06 11:45 ` Otavio Salvador 2013-11-06 11:51 ` Daiane Angolini 2013-11-06 12:34 ` Otavio Salvador 2013-11-06 11:57 ` Gonzalez, Alex 2013-11-06 12:35 ` Otavio Salvador 2013-11-06 15:09 ` Fabio Estevam 2013-11-06 15:27 ` Otavio Salvador 2013-11-06 11:42 ` [meta-fsl-arm][PATCH 0/2] master-next: Fix fsl-image-gui build Otavio Salvador
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.