diff options
author | 2021-03-09 16:15:40 -0600 | |
---|---|---|
committer | 2021-03-09 16:55:57 -0600 | |
commit | 4cb9dbbdb18ae3b32f5583290699e135d4c464db (patch) | |
tree | ed08cb9d25401dfbee48b9bf5d9426608e6e5d57 | |
parent | f12a614b4e854cb0bb9f967b3cbc8fac235b8ad0 (diff) | |
download | meta-qcom-4cb9dbbdb18ae3b32f5583290699e135d4c464db.tar.gz meta-qcom-4cb9dbbdb18ae3b32f5583290699e135d4c464db.tar.bz2 meta-qcom-4cb9dbbdb18ae3b32f5583290699e135d4c464db.zip |
recipes-graphics: Remove swrast driver and fix installation of mesa-ci
Remove in upstream since,
https://gitlab.freedesktop.org/mesa/mesa/-/commit/435de835cd639d1b9bb96f81fc224771dc90af6d
Installation of mesa-ci,
https://gitlab.freedesktop.org/mesa/mesa/-/commit/27e0181523474cbf11c251b0294f019acc4d557d
Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
-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 |