summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/mesa
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2015-09-02 16:49:45 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2015-09-14 10:45:17 -0300
commit24396b28f0137464cd82b9a19f705c1db180ead2 (patch)
tree827a6611d2d9f999ee27a1c0c40967de5b098471 /recipes-graphics/mesa
parent6efaa8cbf7b2f6d316978cc48880c6e740c57598 (diff)
downloadmeta-fsl-arm-24396b28f0137464cd82b9a19f705c1db180ead2.tar.gz
Rework i.MX6 UltraLite support to not use other i.MX6 code
The i.MX6 UltraLite is very different from the other i.MX6 SoCs and the current BSP infrastructure needs to be reworked to allow for more granullar control of the features each SoC provide to control the changes to be applied for the SoC peripherals support. For now, it is not possible to express this clearly in the BSP so the current change is to revert some of the changes done for the i.MX6 UltraLite to be enabled and make sure that the boards using the SoC does not inherit the 'mx6' override. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-graphics/mesa')
-rw-r--r--recipes-graphics/mesa/mesa-demos_%.bbappend20
-rw-r--r--recipes-graphics/mesa/mesa_%.bbappend21
2 files changed, 12 insertions, 29 deletions
diff --git a/recipes-graphics/mesa/mesa-demos_%.bbappend b/recipes-graphics/mesa/mesa-demos_%.bbappend
index cc245b2..1f070a4 100644
--- a/recipes-graphics/mesa/mesa-demos_%.bbappend
+++ b/recipes-graphics/mesa/mesa-demos_%.bbappend
@@ -1,24 +1,14 @@
1FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" 1FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
2 2
3MESA-DEMO-PATCH = " file://Replace-glWindowPos2iARB-calls-with-glWindowPos2i.patch \ 3SRC_URI_append_mx6 = " file://Replace-glWindowPos2iARB-calls-with-glWindowPos2i.patch \
4 file://fix-clear-build-break.patch \ 4 file://fix-clear-build-break.patch \
5 file://Additional-eglSwapBuffer-calling-makes-wrong-throttl.patch \ 5 file://Additional-eglSwapBuffer-calling-makes-wrong-throttl.patch \
6 file://Add-OpenVG-demos-to-support-wayland.patch" 6 file://Add-OpenVG-demos-to-support-wayland.patch"
7 7
8# only apply patches on mx6 that have a GPU 8PACKAGECONFIG_remove_mx6 = " \
9SRC_URI_append_mx6q = " ${MESA-DEMO-PATCH}" 9 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', \
10SRC_URI_append_mx6dl = " ${MESA-DEMO-PATCH}" 10 bb.utils.contains('DISTRO_FEATURES', 'wayland', 'glu', '', d), d)}"
11SRC_URI_append_mx6sx = " ${MESA-DEMO-PATCH}" 11PACKAGECONFIG_remove_mx6sl = "gles1 gles2"
12SRC_URI_append_mx6sl = " ${MESA-DEMO-PATCH}"
13
14REMOVE_GLU = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', \
15 bb.utils.contains('DISTRO_FEATURES', 'wayland', 'glu', '', d), d)}"
16
17# only remove GLU on mx6 thave have a GPU
18PACKAGECONFIG_remove_mx6q = "${REMOVE_GLU}"
19PACKAGECONFIG_remove_mx6dl = "${REMOVE_GLU}"
20PACKAGECONFIG_remove_mx6sx = "${REMOVE_GLU}"
21PACKAGECONFIG_remove_mx6sl = "gles1 gles2 ${REMOVE_GLU}"
22 12
23PACKAGECONFIG_append = "\ 13PACKAGECONFIG_append = "\
24 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', \ 14 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', \
diff --git a/recipes-graphics/mesa/mesa_%.bbappend b/recipes-graphics/mesa/mesa_%.bbappend
index 66913e1..2536afd 100644
--- a/recipes-graphics/mesa/mesa_%.bbappend
+++ b/recipes-graphics/mesa/mesa_%.bbappend
@@ -1,19 +1,12 @@
1PACKAGECONFIG_remove_mx6q = "egl gles" 1PACKAGECONFIG_remove_mx6 = "egl gles"
2PACKAGECONFIG_remove_mx6dl = "egl gles"
3PACKAGECONFIG_remove_mx6sx = "egl gles"
4PACKAGECONFIG_remove_mx6sl = "egl gles"
5 2
6# i.MX6SL uses mesa software rendering 3PROVIDES_remove_mx6 = "virtual/libgles1 virtual/libgles2 virtual/libopenvg virtual/egl"
4PROVIDES_remove_mx6q = "virtual/libgl"
5PROVIDES_remove_mx6dl = "virtual/libgl"
6PROVIDES_remove_mx6sx = "virtual/libgl"
7 7
8PROVIDES_remove_mx6q = "virtual/libgles1 virtual/libgles2 virtual/libopenvg virtual/egl virtual/libgl" 8USE_VIV_LIBGL = "yes"
9PROVIDES_remove_mx6dl = "virtual/libgles1 virtual/libgles2 virtual/libopenvg virtual/egl virtual/libgl" 9USE_VIV_LIBGL_mx6sl = "no"
10PROVIDES_remove_mx6sx = "virtual/libgles1 virtual/libgles2 virtual/libopenvg virtual/egl virtual/libgl"
11PROVIDES_remove_mx6sl = "virtual/libgles1 virtual/libgles2 virtual/libopenvg virtual/egl"
12
13USE_VIV_LIBGL = "no"
14USE_VIV_LIBGL_mx6q = "yes"
15USE_VIV_LIBGL_mx6dl = "yes"
16USE_VIV_LIBGL_mx6sx = "yes"
17 10
18# FIXME: mesa should support 'x11-no-tls' option 11# FIXME: mesa should support 'x11-no-tls' option
19python () { 12python () {