diff options
author | Ross Burton <ross.burton@intel.com> | 2012-12-06 12:23:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-11 15:54:26 +0000 |
commit | 8060a24c679ba17aea48bdeb4b8cfd460885f65f (patch) | |
tree | 594a244fac7f3385fc08d966dc43edda3da68e85 /meta/recipes-graphics/mesa/mesa-git.inc | |
parent | b85388ad0b6c3e7176295949d88c504abf0ba5cc (diff) | |
download | openembedded-core-8060a24c679ba17aea48bdeb4b8cfd460885f65f.tar.gz openembedded-core-8060a24c679ba17aea48bdeb4b8cfd460885f65f.tar.bz2 openembedded-core-8060a24c679ba17aea48bdeb4b8cfd460885f65f.zip |
mesa-dri: upgrade -git version to current master
license.html was reformated so the checksum changed.
The GLSL compiler can be built using CC_FOR_BUILD, so we don't need
mesa-dri-glsl-native.
Update common packaging to include libdricore and the skeleton libgles3, and
remove the driver .la files.
mesa-git/uclibc.patch isn't applied, remove.
x32 support is integrated into mklib, drop 0003-fix-for-x32.patch.
uclibc is checked for upstream, drop 0001-Compile-with-uclibc.patch.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-git.inc')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-git.inc | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-git.inc b/meta/recipes-graphics/mesa/mesa-git.inc index b907931b7b..d558d0b3b6 100644 --- a/meta/recipes-graphics/mesa/mesa-git.inc +++ b/meta/recipes-graphics/mesa/mesa-git.inc @@ -1,21 +1,14 @@ -DEPENDS += "mesa-dri-glsl-native" +# Current pre-9.1 commit +SRCREV = "1665af3066f3d58c42e9d5b13098f13615a7672c" +PV = "9.1~git${SRCPV}" -SRCREV = "c1f4867c89adb1a6b19d66ec8ad146115909f0a7" -PV = "8.0.4+git${SRCPV}" - -LIC_FILES_CHKSUM = "file://docs/license.html;md5=03ccdc4c379c4289aecfb8892c546f67" +LIC_FILES_CHKSUM = "file://docs/license.html;md5=42d77d95cba529a3637129be87d6555d" FILESEXTRAPATHS_prepend := "${THISDIR}/mesa-git:" SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;protocol=git \ - file://0001-Compile-with-uclibc.patch \ file://0002-cross-compile.patch \ - file://0003-fix-for-x32.patch \ " + SRC_URI += "${@base_contains('DISTRO_FEATURES', 'x11', '', 'file://0004-gross-hack-to-prevent-from-install-libgl.patch', d)}" S = "${WORKDIR}/git" - -do_configure_prepend() { - # We need builtin_compiler built for buildhost arch instead of target (is provided by mesa-dri-glsl-native)" - sed -i "s#\./builtin_compiler#${STAGING_BINDIR_NATIVE}/glsl/builtin_compiler#g" ${S}/src/glsl/Makefile -} |