diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-14 15:32:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-15 00:41:23 +0100 |
commit | 2fd6598a2ced86a54e82062e9e2a547544360e32 (patch) | |
tree | 8e244300753b2eedf94a12e4983d8be30b0d7338 /meta/recipes-graphics/mesa/mesa-dri.inc | |
parent | 6879750ad5ea227226041f36f18c493058b3ee8b (diff) | |
download | poky-2fd6598a2ced86a54e82062e9e2a547544360e32.tar.gz |
mesa-dri: Enable swrast only by default and intel drivers only on IA platform
(From OE-Core rev: d1b12b92439805ec9ca5d031d34d264acd0cab3b)
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.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-dri.inc b/meta/recipes-graphics/mesa/mesa-dri.inc index 603438ef0b..795144a2e6 100644 --- a/meta/recipes-graphics/mesa/mesa-dri.inc +++ b/meta/recipes-graphics/mesa/mesa-dri.inc | |||
@@ -4,7 +4,11 @@ LIB_DEPS += "libdrm expat" | |||
4 | # most of our targets do not have DRI so will use mesa-xlib | 4 | # most of our targets do not have DRI so will use mesa-xlib |
5 | DEFAULT_PREFERENCE = "-1" | 5 | DEFAULT_PREFERENCE = "-1" |
6 | 6 | ||
7 | EXTRA_OECONF += "--with-driver=dri --disable-egl --disable-gallium --without-gallium-drivers" | 7 | DRIDRIVERS = "swrast" |
8 | DRIDRIVERS_x86 = "swrast,i915,i965" | ||
9 | DRIDRIVERS_x86-64 = "swrast,i915,i965" | ||
10 | |||
11 | EXTRA_OECONF += "--with-driver=dri --disable-egl --disable-gallium --without-gallium-drivers --with-dri-drivers=${DRIDRIVERS}" | ||
8 | 12 | ||
9 | python populate_packages_prepend() { | 13 | python populate_packages_prepend() { |
10 | import os.path | 14 | import os.path |