diff options
author | 2021-03-10 09:22:42 +0100 | |
---|---|---|
committer | 2021-03-10 09:22:42 +0100 | |
commit | fbafb08c0cb4677724d93b3d78964b74751d654b (patch) | |
tree | ed08cb9d25401dfbee48b9bf5d9426608e6e5d57 | |
parent | f12a614b4e854cb0bb9f967b3cbc8fac235b8ad0 (diff) | |
parent | 4cb9dbbdb18ae3b32f5583290699e135d4c464db (diff) | |
download | meta-qcom-fbafb08c0cb4677724d93b3d78964b74751d654b.tar.gz meta-qcom-fbafb08c0cb4677724d93b3d78964b74751d654b.tar.bz2 meta-qcom-fbafb08c0cb4677724d93b3d78964b74751d654b.zip |
Merge pull request #283 from alimon/mesa_git
recipes-graphics: mesa_git Remove swrast driver and fix installation of mesa-ci
-rw-r--r-- | recipes-graphics/mesa/mesa_git.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-graphics/mesa/mesa_git.bb b/recipes-graphics/mesa/mesa_git.bb index 892cfac..29ecd67 100644 --- a/recipes-graphics/mesa/mesa_git.bb +++ b/recipes-graphics/mesa/mesa_git.bb @@ -9,11 +9,13 @@ SRC_URI = "git://gitlab.freedesktop.org/mesa/mesa.git;protocol=https \ " LIC_FILES_CHKSUM = "file://docs/license.rst;md5=9aa1bc48c9826ad9fdb16661f6930496" -SRCREV = "${@oe.utils.conditional("MESA_DEV", "1", "${AUTOREV}", "ec74a1361841140c87e617eb14d4d764104fc930", d)}" +SRCREV = "${@oe.utils.conditional("MESA_DEV", "1", "${AUTOREV}", "dfb0e0d246ef0437eb029066c0dd48c06f62820a", d)}" DEFAULT_PREFERENCE = "${@oe.utils.conditional("MESA_DEV", "1", "1", "-1", d)}" PLATFORMS_remove = "drm surfaceless" PACKAGECONFIG[osmesa] = "-Dosmesa=true,-Dosmesa=false" +GALLIUMDRIVERS_remove = "swrast" +DRIDRIVERS_remove = "swrast" S = "${WORKDIR}/git" PV = "20.4-dev+git${SRCPV}" @@ -25,7 +27,7 @@ FILES_${PN}-ci = "${bindir}/deqp-runner.sh ${datadir}/mesa/deqp-*" do_install_append () { install -d ${D}/${datadir}/mesa - install -m 0644 ${S}/ci-expects/default/deqp-default-skips.txt ${D}/${datadir}/mesa/ + install -m 0644 ${S}/.gitlab-ci/deqp-default-skips.txt ${D}/${datadir}/mesa/ for f in ${S}/src/freedreno/ci/deqp-freedreno-*; do install -m 0644 $f ${D}/${datadir}/mesa/ done |