summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa-dri.inc
diff options
context:
space:
mode:
authorIan Reinhart Geiser <igeiser@devonit.com>2013-01-31 13:22:41 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-01 15:54:00 +0000
commit4a4049b2fb4ade9d0bdb9354271534066a601411 (patch)
treea29a9ab5805489a0d4481b39284abcfb398ad215 /meta/recipes-graphics/mesa/mesa-dri.inc
parent3f1280da0ad6db2962eaca29ecffc694e0f69517 (diff)
downloadpoky-4a4049b2fb4ade9d0bdb9354271534066a601411.tar.gz
mesa-dri: add extra dri drivers
* By default enable only swrast. This needs to be here or for some reason qemuarm tries to detect the intel dri libraries and fails. * For x86 and x86-64 explicitly set all of the supported drm drivers. builds properly with qemux86 qemuarm and qemux86-64 (From OE-Core rev: 3efcfa7e75dc0fe98b75ae1b7be8db5549182ff9) Signed-off-by: Ian Reinhart Geiser <igeiser@devonit.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-dri.inc')
-rw-r--r--meta/recipes-graphics/mesa/mesa-dri.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-dri.inc b/meta/recipes-graphics/mesa/mesa-dri.inc
index 1f6ec78c68..e43150b326 100644
--- a/meta/recipes-graphics/mesa/mesa-dri.inc
+++ b/meta/recipes-graphics/mesa/mesa-dri.inc
@@ -2,8 +2,8 @@ DEPENDS += "libdrm expat udev"
2X11_DEPS += "dri2proto" 2X11_DEPS += "dri2proto"
3 3
4DRIDRIVERS = "swrast" 4DRIDRIVERS = "swrast"
5DRIDRIVERS_append_x86 = ",i915,i965" 5DRIDRIVERS_append_x86 = ",radeon,r200,nouveau,i965,i915"
6DRIDRIVERS_append_x86-64 = ",i915,i965" 6DRIDRIVERS_append_x86-64 = ",radeon,r200,nouveau,i965,i915"
7 7
8EXTRA_OECONF += "--disable-gallium --without-gallium-drivers" 8EXTRA_OECONF += "--disable-gallium --without-gallium-drivers"
9EXTRA_OECONF += "--enable-dri --with-dri-drivers=${DRIDRIVERS}" 9EXTRA_OECONF += "--enable-dri --with-dri-drivers=${DRIDRIVERS}"