All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] Rework i.MX6UL overrides
@ 2017-01-25 12:21 Otavio Salvador
  2017-01-25 12:21 ` [PATCH 01/19] xserver-commom: Append SRC_URI for imxgpu2d machines Otavio Salvador
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

This patchset rework the i.MX6UL overrides to use the feature
overrides set, thus allowing it to be dealt as any other i.MX6 SoC.

This is important to avoid unneeded diverging on source code and to
increase the reuse of metadata for current and future SoCs.


Fabio Berton (11):
  xserver-commom: Append SRC_URI for imxgpu2d machines
  xserver-commom: Set PACKAGE_ARCH override for imxgpu2d machines
  efl: Set override for imxgpu3d machines
  clutter: Set override for imxgpu2d machines
  cogl: Set override for imxgpu2d machines
  gtk+3: Set override for imxgpu2d machines
  opencv: Set override for imxgpu2d machines
  libdrm: Set override for imxgpu2d machines
  mesa-demos: Set override for imxgpu2d machines
  piglit: Set override for imxgpu2d machines
  qt4-imx-support: Set override for imxgpu2d machines

Otavio Salvador (8):
  mesa: Rework recipe to use the feature overrides
  image_types_fsl.bbclass: Remove i.MX6 UL specific metadata
  alsa-state: Remove i.MX6 UL specific metadata
  alsa-lib: Remove i.MX6 UL specific metadata
  pulseaudio: Remove i.MX6 UL specific metadata
  imx-base.inc: Convert to use i.MX MACHINEOVERRIDES_EXTENDER
  imx-base.inc: SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS can be always appended
  imx6ulevk: Add mx6 in the MACHINEOVERRIDES set

 classes/image_types_fsl.bbclass                       |  1 -
 conf/machine/imx6ulevk.conf                           |  2 +-
 conf/machine/include/imx-base.inc                     | 13 +++++--------
 .../efl-layer/recipes-efl/efl/efl_%.bbappend          |  2 +-
 .../recipes-support/opencv/opencv_2.4.bbappend        |  2 +-
 .../qt4-layer/recipes-qt4/qt4/qt4-imx-support.inc     |  8 ++++----
 recipes-bsp/alsa-state/alsa-state.bbappend            |  2 --
 recipes-graphics/clutter/clutter-1.0_%.bbappend       |  2 +-
 recipes-graphics/cogl/cogl-1.0_%.bbappend             |  2 +-
 recipes-graphics/drm/libdrm_%.bbappend                |  4 ++--
 recipes-graphics/gtk+/gtk+3_%.bbappend                |  4 ++--
 recipes-graphics/mesa/mesa-demos_%.bbappend           |  2 +-
 recipes-graphics/mesa/mesa_%.bbappend                 | 19 +++++++------------
 recipes-graphics/piglit/piglit_git.bbappend           |  2 +-
 .../xserver-common/xserver-common_%.bbappend          | 10 ++++------
 recipes-multimedia/alsa/alsa-lib_%.bbappend           |  2 --
 recipes-multimedia/pulseaudio/pulseaudio_%.bbappend   |  2 --
 17 files changed, 31 insertions(+), 48 deletions(-)

-- 
2.11.0



^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH 01/19] xserver-commom: Append SRC_URI for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 02/19] xserver-commom: Set PACKAGE_ARCH override " Otavio Salvador
                   ` (18 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Remove variable PATCHES_IMX_SPECIFIC and apply patch for all imxgpu2d
machines.

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/xserver-common/xserver-common_%.bbappend | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/recipes-graphics/xserver-common/xserver-common_%.bbappend b/recipes-graphics/xserver-common/xserver-common_%.bbappend
index 28d1f7bd..1297610e 100644
--- a/recipes-graphics/xserver-common/xserver-common_%.bbappend
+++ b/recipes-graphics/xserver-common/xserver-common_%.bbappend
@@ -1,10 +1,8 @@
 # i.MX extra configuration 
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-PATCHES_IMX_SPECIFIC = " file://0016-xserver-common-enable-iglx-module.patch \
-"
-SRC_URI_append = " \
-    ${PATCHES_IMX_SPECIFIC} \
+SRC_URI_append_imxgpu2d = " \
+    file://0016-xserver-common-enable-iglx-module.patch
 "
 PACKAGE_ARCH_mx6 = "${MACHINE_SOCARCH}"
 PACKAGE_ARCH_mx7 = "${MACHINE_SOCARCH}"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 02/19] xserver-commom: Set PACKAGE_ARCH override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
  2017-01-25 12:21 ` [PATCH 01/19] xserver-commom: Append SRC_URI for imxgpu2d machines Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 03/19] mesa: Rework recipe to use the feature overrides Otavio Salvador
                   ` (17 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Patch it's only enable for imxgpu2d,  change mx6 override to imxgpu2d
and remove unused mx7 override.

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/xserver-common/xserver-common_%.bbappend | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-graphics/xserver-common/xserver-common_%.bbappend b/recipes-graphics/xserver-common/xserver-common_%.bbappend
index 1297610e..5bfcbbd7 100644
--- a/recipes-graphics/xserver-common/xserver-common_%.bbappend
+++ b/recipes-graphics/xserver-common/xserver-common_%.bbappend
@@ -4,5 +4,5 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 SRC_URI_append_imxgpu2d = " \
     file://0016-xserver-common-enable-iglx-module.patch
 "
-PACKAGE_ARCH_mx6 = "${MACHINE_SOCARCH}"
-PACKAGE_ARCH_mx7 = "${MACHINE_SOCARCH}"
+
+PACKAGE_ARCH_imxgpu2d = "${MACHINE_SOCARCH}"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 03/19] mesa: Rework recipe to use the feature overrides
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
  2017-01-25 12:21 ` [PATCH 01/19] xserver-commom: Append SRC_URI for imxgpu2d machines Otavio Salvador
  2017-01-25 12:21 ` [PATCH 02/19] xserver-commom: Set PACKAGE_ARCH override " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 04/19] image_types_fsl.bbclass: Remove i.MX6 UL specific metadata Otavio Salvador
                   ` (16 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

The recipe was still using the mx6 specific overrides, which is
wrong. We should use the feature overrides so more SoCs can be dealt
in the generic way.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/mesa/mesa_%.bbappend | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/recipes-graphics/mesa/mesa_%.bbappend b/recipes-graphics/mesa/mesa_%.bbappend
index 8f5aa751..3005fd73 100644
--- a/recipes-graphics/mesa/mesa_%.bbappend
+++ b/recipes-graphics/mesa/mesa_%.bbappend
@@ -1,15 +1,12 @@
-PACKAGECONFIG_remove_mx6 = "egl gles"
+PACKAGECONFIG_remove_imxgpu2d = "egl gles"
 
-PROVIDES_remove_mx6 = "virtual/libgles1 virtual/libgles2 virtual/libopenvg virtual/egl"
+PROVIDES_remove_imxgpu2d = "virtual/libgles1 virtual/libgles2 virtual/libopenvg virtual/egl"
 PROVIDES_remove_imxgpu3d = "virtual/libgl"
 
-USE_VIV_LIBGL = "yes"
-USE_VIV_LIBGL_mx6sl = "no"
-
 # FIXME: mesa should support 'x11-no-tls' option
 python () {
     overrides = d.getVar("OVERRIDES", True).split(":")
-    if "mx6" not in overrides:
+    if "imxgpu2d" not in overrides:
         return
 
     extra_oeconf = d.getVar("EXTRA_OECONF", True)
@@ -18,10 +15,8 @@ python () {
 }
 
 # FIXME: Dirty hack to allow use of Vivante GPU libGL binary
-do_install_append_mx6 () {
-    if [ "${USE_VIV_LIBGL}" = "yes" ]; then
-        rm -f ${D}${libdir}/libGL.* \
-              ${D}${includedir}/GL/gl.h \
-              ${D}${includedir}/GL/glext.h
-    fi
+do_install_append_imxgpu3d () {
+    rm -f ${D}${libdir}/libGL.* \
+          ${D}${includedir}/GL/gl.h \
+          ${D}${includedir}/GL/glext.h
 }
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 04/19] image_types_fsl.bbclass: Remove i.MX6 UL specific metadata
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (2 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 03/19] mesa: Rework recipe to use the feature overrides Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 05/19] alsa-state: " Otavio Salvador
                   ` (15 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

The SoC is now dealt as a i.MX6 SoC so there is no need for the
specific metadata.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 classes/image_types_fsl.bbclass | 1 -
 1 file changed, 1 deletion(-)

diff --git a/classes/image_types_fsl.bbclass b/classes/image_types_fsl.bbclass
index 399bcd08..5bf2e3f5 100644
--- a/classes/image_types_fsl.bbclass
+++ b/classes/image_types_fsl.bbclass
@@ -89,7 +89,6 @@ SDCARD_GENERATION_COMMAND_mxs = "generate_mxs_sdcard"
 SDCARD_GENERATION_COMMAND_mx25 = "generate_imx_sdcard"
 SDCARD_GENERATION_COMMAND_mx5 = "generate_imx_sdcard"
 SDCARD_GENERATION_COMMAND_mx6 = "generate_imx_sdcard"
-SDCARD_GENERATION_COMMAND_mx6ul = "generate_imx_sdcard"
 SDCARD_GENERATION_COMMAND_mx7 = "generate_imx_sdcard"
 SDCARD_GENERATION_COMMAND_vf = "generate_imx_sdcard"
 
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 05/19] alsa-state: Remove i.MX6 UL specific metadata
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (3 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 04/19] image_types_fsl.bbclass: Remove i.MX6 UL specific metadata Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 06/19] alsa-lib: " Otavio Salvador
                   ` (14 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

The SoC is now dealt as a i.MX6 SoC so there is no need for the
specific metadata.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-bsp/alsa-state/alsa-state.bbappend | 2 --
 1 file changed, 2 deletions(-)

diff --git a/recipes-bsp/alsa-state/alsa-state.bbappend b/recipes-bsp/alsa-state/alsa-state.bbappend
index 58a763a1..a5134297 100644
--- a/recipes-bsp/alsa-state/alsa-state.bbappend
+++ b/recipes-bsp/alsa-state/alsa-state.bbappend
@@ -1,8 +1,6 @@
 # Append path for freescale layer to include alsa-state asound.conf
 FILESEXTRAPATHS_prepend_mx6 := "${THISDIR}/${PN}/imx:"
-FILESEXTRAPATHS_prepend_mx6ul := "${THISDIR}/${PN}/imx:"
 FILESEXTRAPATHS_prepend_mx7 := "${THISDIR}/${PN}/imx:"
 
 PACKAGE_ARCH_mx6 = "${MACHINE_ARCH}"
-PACKAGE_ARCH_mx6ul = "${MACHINE_ARCH}"
 PACKAGE_ARCH_mx7 = "${MACHINE_ARCH}"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 06/19] alsa-lib: Remove i.MX6 UL specific metadata
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (4 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 05/19] alsa-state: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 07/19] pulseaudio: " Otavio Salvador
                   ` (13 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

The SoC is now dealt as a i.MX6 SoC so there is no need for the
specific metadata.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-multimedia/alsa/alsa-lib_%.bbappend | 2 --
 1 file changed, 2 deletions(-)

diff --git a/recipes-multimedia/alsa/alsa-lib_%.bbappend b/recipes-multimedia/alsa/alsa-lib_%.bbappend
index 0bb2c1cd..bfe346cc 100644
--- a/recipes-multimedia/alsa/alsa-lib_%.bbappend
+++ b/recipes-multimedia/alsa/alsa-lib_%.bbappend
@@ -4,9 +4,7 @@ IMX_PATCH = " file://0001-add-conf-for-multichannel-support-in-imx.patch \
               file://0004-pcm-Don-t-store-the-state-for-SND_PCM_STATE_SUSPENDE.patch"
 
 SRC_URI_append_mx6 = "${IMX_PATCH}"
-SRC_URI_append_mx6ul = "${IMX_PATCH}"
 SRC_URI_append_mx7 = "${IMX_PATCH}"
 
 PACKAGE_ARCH_mx6 = "${MACHINE_SOCARCH}"
-PACKAGE_ARCH_mx6ul = "${MACHINE_SOCARCH}"
 PACKAGE_ARCH_mx7 = "${MACHINE_SOCARCH}"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 07/19] pulseaudio: Remove i.MX6 UL specific metadata
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (5 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 06/19] alsa-lib: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 08/19] efl: Set override for imxgpu3d machines Otavio Salvador
                   ` (12 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

The SoC is now dealt as a i.MX6 SoC so there is no need for the
specific metadata.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-multimedia/pulseaudio/pulseaudio_%.bbappend | 2 --
 1 file changed, 2 deletions(-)

diff --git a/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend b/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend
index ebb8fcc8..b9e7d474 100644
--- a/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend
+++ b/recipes-multimedia/pulseaudio/pulseaudio_%.bbappend
@@ -4,7 +4,6 @@ CACHED_CONFIGUREVARS_append_mx6 = " ax_cv_PTHREAD_PRIO_INHERIT=no"
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}/imx:"
 
 SRC_URI_append_mx6 = " file://daemon.conf file://default.pa"
-SRC_URI_append_mx6ul = " file://daemon.conf file://default.pa"
 SRC_URI_append_mx7 = " file://daemon.conf file://default.pa \
                        file://pulseaudio-remove-the-control-for-speaker-headphone-widge.patch \
 "
@@ -17,5 +16,4 @@ do_install_append() {
 }
 
 PACKAGE_ARCH_mx6 = "${MACHINE_SOCARCH}"
-PACKAGE_ARCH_mx6ul = "${MACHINE_SOCARCH}"
 PACKAGE_ARCH_mx7 = "${MACHINE_SOCARCH}"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 08/19] efl: Set override for imxgpu3d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (6 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 07/19] pulseaudio: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 09/19] clutter: Set override for imxgpu2d machines Otavio Salvador
                   ` (11 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 dynamic-layers/efl-layer/recipes-efl/efl/efl_%.bbappend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dynamic-layers/efl-layer/recipes-efl/efl/efl_%.bbappend b/dynamic-layers/efl-layer/recipes-efl/efl/efl_%.bbappend
index 72ef7980..7f711aa7 100644
--- a/dynamic-layers/efl-layer/recipes-efl/efl/efl_%.bbappend
+++ b/dynamic-layers/efl-layer/recipes-efl/efl/efl_%.bbappend
@@ -1,3 +1,3 @@
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-SRC_URI_append_mx6 = " file://0001-Add-preprocessor-definitions-for-Vivante-GLES-header.patch"
+SRC_URI_append_imxgpu2d = " file://0001-Add-preprocessor-definitions-for-Vivante-GLES-header.patch"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 09/19] clutter: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (7 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 08/19] efl: Set override for imxgpu3d machines Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 10/19] cogl: " Otavio Salvador
                   ` (10 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/clutter/clutter-1.0_%.bbappend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-graphics/clutter/clutter-1.0_%.bbappend b/recipes-graphics/clutter/clutter-1.0_%.bbappend
index 0099a471..6f139f03 100644
--- a/recipes-graphics/clutter/clutter-1.0_%.bbappend
+++ b/recipes-graphics/clutter/clutter-1.0_%.bbappend
@@ -1,4 +1,4 @@
-PACKAGECONFIG_mx6 ??= " \
+PACKAGECONFIG_imxgpu2d ??= " \
     ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland egl', \
        bb.utils.contains('DISTRO_FEATURES',     'x11', 'glx x11', \
        '', d), d)} \
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 10/19] cogl: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (8 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 09/19] clutter: Set override for imxgpu2d machines Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 11/19] gtk+3: " Otavio Salvador
                   ` (9 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/cogl/cogl-1.0_%.bbappend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-graphics/cogl/cogl-1.0_%.bbappend b/recipes-graphics/cogl/cogl-1.0_%.bbappend
index c150f3ee..ad433484 100644
--- a/recipes-graphics/cogl/cogl-1.0_%.bbappend
+++ b/recipes-graphics/cogl/cogl-1.0_%.bbappend
@@ -1,4 +1,4 @@
-PACKAGECONFIG_mx6 ??= " \
+PACKAGECONFIG_imxgpu2d ??= " \
     cogl-pango gles2 \
     ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'egl-wayland', \
        bb.utils.contains('DISTRO_FEATURES',     'x11', 'egl-x11', \
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 11/19] gtk+3: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (9 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 10/19] cogl: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 12/19] opencv: " Otavio Salvador
                   ` (8 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/gtk+/gtk+3_%.bbappend | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-graphics/gtk+/gtk+3_%.bbappend b/recipes-graphics/gtk+/gtk+3_%.bbappend
index 2f830979..7377c2c6 100644
--- a/recipes-graphics/gtk+/gtk+3_%.bbappend
+++ b/recipes-graphics/gtk+/gtk+3_%.bbappend
@@ -1,8 +1,8 @@
-PACKAGECONFIG_remove_mx6 = " \
+PACKAGECONFIG_remove_imxgpu2d = " \
     ${@bb.utils.contains("DISTRO_FEATURES", "wayland", "x11", "", d)} \
 "
 
-CFLAGS_append_mx6 = " \
+CFLAGS_append_imxgpu2d = " \
     -DLINUX \
     ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', '-DEGL_API_FB -DEGL_API_WL', '', d)} \
 "
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 12/19] opencv: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (10 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 11/19] gtk+3: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 13/19] libdrm: " Otavio Salvador
                   ` (7 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 .../openembedded-layer/recipes-support/opencv/opencv_2.4.bbappend       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/opencv_2.4.bbappend b/dynamic-layers/openembedded-layer/recipes-support/opencv/opencv_2.4.bbappend
index f1d0e29b..3c4c7f5e 100644
--- a/dynamic-layers/openembedded-layer/recipes-support/opencv/opencv_2.4.bbappend
+++ b/dynamic-layers/openembedded-layer/recipes-support/opencv/opencv_2.4.bbappend
@@ -2,4 +2,4 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
 SRC_URI_append_mx6sx = " file://0001-MGS-515-ccc-Opencv-app-can-t-run-on-imx6sx-with-cam.patch"
 
-PACKAGECONFIG_remove_mx6 = "v4l"
+PACKAGECONFIG_remove_imxgpu2d = "v4l"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 13/19] libdrm: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (11 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 12/19] opencv: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 14/19] mesa-demos: " Otavio Salvador
                   ` (6 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/drm/libdrm_%.bbappend | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-graphics/drm/libdrm_%.bbappend b/recipes-graphics/drm/libdrm_%.bbappend
index 6bd7968d..97b6df92 100644
--- a/recipes-graphics/drm/libdrm_%.bbappend
+++ b/recipes-graphics/drm/libdrm_%.bbappend
@@ -1,5 +1,5 @@
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-SRC_URI_append_mx6 = " file://drm-update-arm.patch"
+SRC_URI_append_imxgpu2d = " file://drm-update-arm.patch"
 
-PACKAGE_ARCH_mx6 = "${MACHINE_SOCARCH}"
+PACKAGE_ARCH_imxgpu2d = "${MACHINE_SOCARCH}"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 14/19] mesa-demos: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (12 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 13/19] libdrm: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 15/19] piglit: " Otavio Salvador
                   ` (5 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/mesa/mesa-demos_%.bbappend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-graphics/mesa/mesa-demos_%.bbappend b/recipes-graphics/mesa/mesa-demos_%.bbappend
index e900e1f8..a1c5b63d 100644
--- a/recipes-graphics/mesa/mesa-demos_%.bbappend
+++ b/recipes-graphics/mesa/mesa-demos_%.bbappend
@@ -1,6 +1,6 @@
 FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
 
-SRC_URI_append_mx6 = " file://Replace-glWindowPos2iARB-calls-with-glWindowPos2i.patch \
+SRC_URI_append_imxgpu2d = " file://Replace-glWindowPos2iARB-calls-with-glWindowPos2i.patch \
                     file://fix-clear-build-break.patch \
                     file://Additional-eglSwapBuffer-calling-makes-wrong-throttl.patch \
                     file://Add-OpenVG-demos-to-support-wayland.patch"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 15/19] piglit: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (13 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 14/19] mesa-demos: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 16/19] qt4-imx-support: " Otavio Salvador
                   ` (4 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-graphics/piglit/piglit_git.bbappend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-graphics/piglit/piglit_git.bbappend b/recipes-graphics/piglit/piglit_git.bbappend
index 6330fd7c..41bfa9aa 100644
--- a/recipes-graphics/piglit/piglit_git.bbappend
+++ b/recipes-graphics/piglit/piglit_git.bbappend
@@ -1 +1 @@
-DEPENDS_append_mx6 = " virtual/egl"
+DEPENDS_append_imxgpu2d = " virtual/egl"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 16/19] qt4-imx-support: Set override for imxgpu2d machines
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (14 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 15/19] piglit: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 17/19] imx-base.inc: Convert to use i.MX MACHINEOVERRIDES_EXTENDER Otavio Salvador
                   ` (3 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

From: Fabio Berton <fabio.berton@ossystems.com.br>

Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 dynamic-layers/qt4-layer/recipes-qt4/qt4/qt4-imx-support.inc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dynamic-layers/qt4-layer/recipes-qt4/qt4/qt4-imx-support.inc b/dynamic-layers/qt4-layer/recipes-qt4/qt4/qt4-imx-support.inc
index 5c4a39c8..b7171ebc 100644
--- a/dynamic-layers/qt4-layer/recipes-qt4/qt4/qt4-imx-support.inc
+++ b/dynamic-layers/qt4-layer/recipes-qt4/qt4/qt4-imx-support.inc
@@ -8,15 +8,15 @@ python __anonymous () {
         d.appendVarFlag('do_configure', 'depends', ' virtual/kernel:do_shared_workdir')
 }
 
-SRC_URI_append_mx6 += " \
+SRC_URI_append_imxgpu2d += " \
 	file://0001-Add-support-for-i.MX-codecs-to-phonon.patch \
 	file://0002-i.MX-video-renderer-Allow-v4l-device-from-environmen.patch \
 	file://0003-i.MX6-force-egl-visual-ID-33.patch \
 "
 
-DEPENDS_append_mx6 = " virtual/kernel virtual/libgles2"
-QT_GLFLAGS_mx6 = "-opengl es2 -openvg"
-QT_CONFIG_FLAGS_append_mx6 = " -I${STAGING_KERNEL_DIR}/include/uapi \
+DEPENDS_append_imxgpu2d = " virtual/kernel virtual/libgles2"
+QT_GLFLAGS_imxgpu2d = "-opengl es2 -openvg"
+QT_CONFIG_FLAGS_append_imxgpu2d = " -I${STAGING_KERNEL_DIR}/include/uapi \
                                -I${STAGING_KERNEL_DIR}/include/ \
                                -DLINUX=1 -DEGL_API_FB=1 \
                                -DQT_QPA_EXPERIMENTAL_TOUCHEVENT=1"
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 17/19] imx-base.inc: Convert to use i.MX MACHINEOVERRIDES_EXTENDER
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (15 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 16/19] qt4-imx-support: " Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 18/19] imx-base.inc: SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS can be always appended Otavio Salvador
                   ` (2 subsequent siblings)
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

There were some core BSP variables which were still using SoC family
names instead of feature overrides (XSERVER_DRIVER,
MACHINE_SOCARCH_FILTER) and those needed to be reworked so other SoC
families could be dealt in the generic way (e.g: mx6ul).

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 conf/machine/include/imx-base.inc | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc
index 6e6233d2..30e71be0 100644
--- a/conf/machine/include/imx-base.inc
+++ b/conf/machine/include/imx-base.inc
@@ -28,7 +28,7 @@ UBOOT_ENTRYPOINT_vf = "0x80008000"
 
 PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
 XSERVER_DRIVER = "xf86-video-fbdev"
-XSERVER_DRIVER_mx6 = "xf86-video-imxfb-vivante"
+XSERVER_DRIVER_imxgpu2d = "xf86-video-imxfb-vivante"
 XSERVER_DRIVER_vf = "xf86-video-modesetting"
 XSERVER = "xserver-xorg \
            xf86-input-evdev \
@@ -73,12 +73,9 @@ MACHINE_SOCARCH_SUFFIX_mx6ul  = "-mx6ul"
 MACHINE_SOCARCH_SUFFIX_mx6ull = "-mx6ul"
 
 MACHINE_ARCH_FILTER = "virtual/kernel"
-MACHINE_SOCARCH_FILTER_append_mx6 = " imx-vpu libimxvpuapi imx-codec imx-vpuwrap imx-parser"
-MACHINE_SOCARCH_FILTER_append_mx6 = " virtual/libopenvg virtual/libgles1 virtual/libgles2 virtual/egl virtual/mesa virtual/libgl virtual/libg2d"
-MACHINE_SOCARCH_FILTER_append_mx6 = " cairo pango"
-MACHINE_SOCARCH_FILTER_append_mx6ul = " imx-codec imx-parser"
-MACHINE_SOCARCH_FILTER_append_mx6ull = " imx-codec imx-parser"
-MACHINE_SOCARCH_FILTER_append_mx7 =  " imx-codec imx-parser"
+MACHINE_SOCARCH_FILTER_append_imxvpu = " imx-vpu libimxvpuapi imx-codec imx-vpuwrap imx-parser"
+MACHINE_SOCARCH_FILTER_append_imxgpu2d = " virtual/libopenvg virtual/libgles1 virtual/libgles2 virtual/egl virtual/mesa virtual/libgl virtual/libg2d cairo pango"
+MACHINE_SOCARCH_FILTER_append_imxpxp = " imx-codec imx-parser"
 
 INHERIT += "fsl-dynamic-packagearch"
 
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 18/19] imx-base.inc: SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS can be always appended
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (16 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 17/19] imx-base.inc: Convert to use i.MX MACHINEOVERRIDES_EXTENDER Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:21 ` [PATCH 19/19] imx6ulevk: Add mx6 in the MACHINEOVERRIDES set Otavio Salvador
  2017-01-25 12:28 ` [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

There is no need to restrict the appending of
SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS values as the respective packages will
be added only on the supported packages thus not affecting other
machines.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 conf/machine/include/imx-base.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc
index 30e71be0..934bf628 100644
--- a/conf/machine/include/imx-base.inc
+++ b/conf/machine/include/imx-base.inc
@@ -79,7 +79,7 @@ MACHINE_SOCARCH_FILTER_append_imxpxp = " imx-codec imx-parser"
 
 INHERIT += "fsl-dynamic-packagearch"
 
-SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS_append_mx6 = " \
+SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS_append = " \
     imx-gpu-viv->kernel-module-imx-gpu-viv \
     libimxvpuapi->imx-vpu \
     imx-vpuwrap->imx-vpu \
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 19/19] imx6ulevk: Add mx6 in the MACHINEOVERRIDES set
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (17 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 18/19] imx-base.inc: SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS can be always appended Otavio Salvador
@ 2017-01-25 12:21 ` Otavio Salvador
  2017-01-25 12:28 ` [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:21 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador, prabhu.sundararaj

The i.MX6 UL was dealt in a specific way due the metadata not being
fully ported still to the feature overrides set; now that most
metadata has been converted it is the right time to add the mx6 SoC
family here as well.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 conf/machine/imx6ulevk.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/machine/imx6ulevk.conf b/conf/machine/imx6ulevk.conf
index ca69e75f..dadd525b 100644
--- a/conf/machine/imx6ulevk.conf
+++ b/conf/machine/imx6ulevk.conf
@@ -4,7 +4,7 @@
 #@DESCRIPTION: Machine configuration for NXP i.MX6UL EVK
 #@MAINTAINER: Lauren Post <lauren.post@nxp.com>
 
-MACHINEOVERRIDES =. "mx6ul:"
+MACHINEOVERRIDES =. "mx6:mx6ul:"
 
 include conf/machine/include/imx-base.inc
 include conf/machine/include/tune-cortexa7.inc
-- 
2.11.0



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* Re: [PATCH 00/19] Rework i.MX6UL overrides
  2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
                   ` (18 preceding siblings ...)
  2017-01-25 12:21 ` [PATCH 19/19] imx6ulevk: Add mx6 in the MACHINEOVERRIDES set Otavio Salvador
@ 2017-01-25 12:28 ` Otavio Salvador
  19 siblings, 0 replies; 21+ messages in thread
From: Otavio Salvador @ 2017-01-25 12:28 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: Prabhu Sundararaj, meta-freescale Mailing List

On Wed, Jan 25, 2017 at 10:21 AM, Otavio Salvador
<otavio@ossystems.com.br> wrote:
> This patchset rework the i.MX6UL overrides to use the feature
> overrides set, thus allowing it to be dealt as any other i.MX6 SoC.
...

This patchset has been added on master-next and morty-next. Please
give it a go and let us know what the outcome or if something should
be dropped/added/changed.

-- 
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] 21+ messages in thread

end of thread, other threads:[~2017-01-25 12:28 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-25 12:21 [PATCH 00/19] Rework i.MX6UL overrides Otavio Salvador
2017-01-25 12:21 ` [PATCH 01/19] xserver-commom: Append SRC_URI for imxgpu2d machines Otavio Salvador
2017-01-25 12:21 ` [PATCH 02/19] xserver-commom: Set PACKAGE_ARCH override " Otavio Salvador
2017-01-25 12:21 ` [PATCH 03/19] mesa: Rework recipe to use the feature overrides Otavio Salvador
2017-01-25 12:21 ` [PATCH 04/19] image_types_fsl.bbclass: Remove i.MX6 UL specific metadata Otavio Salvador
2017-01-25 12:21 ` [PATCH 05/19] alsa-state: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 06/19] alsa-lib: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 07/19] pulseaudio: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 08/19] efl: Set override for imxgpu3d machines Otavio Salvador
2017-01-25 12:21 ` [PATCH 09/19] clutter: Set override for imxgpu2d machines Otavio Salvador
2017-01-25 12:21 ` [PATCH 10/19] cogl: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 11/19] gtk+3: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 12/19] opencv: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 13/19] libdrm: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 14/19] mesa-demos: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 15/19] piglit: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 16/19] qt4-imx-support: " Otavio Salvador
2017-01-25 12:21 ` [PATCH 17/19] imx-base.inc: Convert to use i.MX MACHINEOVERRIDES_EXTENDER Otavio Salvador
2017-01-25 12:21 ` [PATCH 18/19] imx-base.inc: SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS can be always appended Otavio Salvador
2017-01-25 12:21 ` [PATCH 19/19] imx6ulevk: Add mx6 in the MACHINEOVERRIDES set Otavio Salvador
2017-01-25 12:28 ` [PATCH 00/19] Rework i.MX6UL overrides 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.