diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2013-07-29 13:05:07 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2013-07-29 14:00:21 -0300 |
commit | bdb9d3fc41af7d32330e74be667dfffb9e5c921a (patch) | |
tree | 8e3ab1eb753bd0459cba5e1d81f54a8fe5673c76 /meta-fsl-arm | |
parent | d41fd1194d352d59770bb20dd2eff2200f23ae47 (diff) | |
download | meta-freescale-bdb9d3fc41af7d32330e74be667dfffb9e5c921a.tar.gz |
gpu-viv-bin-mx6q.inc: Ensure DRI module is add for Wayland + X11 case
When Wayland and X11 distro features are enabled, ensure DRI module is
installed. Fixes a regression introduced by 20d7652 (gpu-viv-bin-mx6q:
Adding support to install Wayland GPU libs).
Change-Id: I0b515641edee6a172469f65068f9de837b592c87
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'meta-fsl-arm')
-rw-r--r-- | meta-fsl-arm/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-fsl-arm/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc b/meta-fsl-arm/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc index fbc9eff3d..f63ed3c7c 100644 --- a/meta-fsl-arm/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc +++ b/meta-fsl-arm/recipes-graphics/gpu-viv-bin-mx6q/gpu-viv-bin-mx6q.inc | |||
@@ -104,6 +104,10 @@ do_install () { | |||
104 | install -m 0644 ${WORKDIR}/wayland-egl.pc ${D}${libdir}/pkgconfig/wayland-egl.pc | 104 | install -m 0644 ${WORKDIR}/wayland-egl.pc ${D}${libdir}/pkgconfig/wayland-egl.pc |
105 | install -m 0644 ${WORKDIR}/wayland-viv.pc ${D}${libdir}/pkgconfig/wayland-viv.pc | 105 | install -m 0644 ${WORKDIR}/wayland-viv.pc ${D}${libdir}/pkgconfig/wayland-viv.pc |
106 | 106 | ||
107 | # Wayland + X11 support | ||
108 | if [ "${USE_X11}" = "yes" ]; then | ||
109 | cp -r ${S}/usr/lib/dri ${D}${libdir} | ||
110 | fi | ||
107 | elif [ "${USE_X11}" = "yes" ]; then | 111 | elif [ "${USE_X11}" = "yes" ]; then |
108 | cp -r ${S}/usr/lib/dri ${D}${libdir} | 112 | cp -r ${S}/usr/lib/dri ${D}${libdir} |
109 | backend=x11 | 113 | backend=x11 |