]> code.ossystems Code Review - meta-freescale.git/commitdiff
gpu-viv-bin-mx6q.inc: If Wayland and X11 are enabled, default to X11
authorOtavio Salvador <otavio@ossystems.com.br>
Sat, 31 Aug 2013 20:58:55 +0000 (17:58 -0300)
committerOtavio Salvador <otavio@ossystems.com.br>
Tue, 3 Sep 2013 16:40:22 +0000 (13:40 -0300)
Vivante GPU driver does not support use of Wayland AND X11 backends at
same time, so we need to choose one for default. We previously had
choose Wayland but many users are reporting problems as the usual
expected support is still X11 so we're moving the default for X11 now.

Change-Id: I30f092509f060d3bced358324a296b0f798da2cb
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
meta-fsl-arm/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc

index 0a539008692e28bbba8d7179a1fea44e71e5be3e..8a3efaf52530e12bb1c6e985e9bf5000ad396d84 100644 (file)
@@ -106,8 +106,15 @@ do_install () {
 
     install -d ${D}${libdir}/pkgconfig
 
-    # If both X11 and Wayland are set in DISTRO_FEATURES then use Wayland as base window system
-    if [ "${USE_WL}" = "yes" ]; then
+    # The preference order, based in DISTRO_FEATURES, is x11, wayland, directfb and fb
+    if [ "${USE_X11}" = "yes" ]; then
+        cp -r ${S}/usr/lib/dri ${D}${libdir}
+        backend=x11
+
+        install -m 0644 ${WORKDIR}/egl_x11.pc ${D}${libdir}/pkgconfig/egl.pc
+        install -m 0644 ${WORKDIR}/glesv1_cm_x11.pc ${D}${libdir}/pkgconfig/glesv1_cm.pc
+        install -m 0644 ${WORKDIR}/glesv2_x11.pc ${D}${libdir}/pkgconfig/glesv2.pc
+    elif [ "${USE_WL}" = "yes" ]; then
         backend=wl
 
         install -m 0644 ${WORKDIR}/egl.pc ${D}${libdir}/pkgconfig/egl.pc
@@ -121,13 +128,6 @@ do_install () {
         if [ "${USE_X11}" = "yes" ]; then
             cp -r ${S}/usr/lib/dri ${D}${libdir}
         fi
-    elif [ "${USE_X11}" = "yes" ]; then
-        cp -r ${S}/usr/lib/dri ${D}${libdir}
-        backend=x11
-
-        install -m 0644 ${WORKDIR}/egl_x11.pc ${D}${libdir}/pkgconfig/egl.pc
-        install -m 0644 ${WORKDIR}/glesv1_cm_x11.pc ${D}${libdir}/pkgconfig/glesv1_cm.pc
-        install -m 0644 ${WORKDIR}/glesv2_x11.pc ${D}${libdir}/pkgconfig/glesv2.pc
     else
         install -m 0644 ${WORKDIR}/egl.pc ${D}${libdir}/pkgconfig/egl.pc
         install -m 0644 ${WORKDIR}/glesv1_cm.pc ${D}${libdir}/pkgconfig/glesv1_cm.pc