aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-graphics/mesa/files/fix-meson-config-compat.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-graphics/mesa/files/fix-meson-config-compat.patch')
-rw-r--r--recipes-graphics/mesa/files/fix-meson-config-compat.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/recipes-graphics/mesa/files/fix-meson-config-compat.patch b/recipes-graphics/mesa/files/fix-meson-config-compat.patch
deleted file mode 100644
index 433d120..0000000
--- a/recipes-graphics/mesa/files/fix-meson-config-compat.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 61d70cfa52df2a434196875ab0c0b67d2ffe2293 Mon Sep 17 00:00:00 2001
-From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-Date: Wed, 2 Sep 2020 15:37:55 -0500
-Subject: [PATCH] mesa: adapt meson script to restore compatibility with
- release one
-
-During this development cycle meson script was changed to stop accepting
-empty values. This causes issues using some build options from OE-core's
-mesa.inc. Restore this compatibility by patching in support for empty
-values.
-
-Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
----
- meson_options.txt | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/meson_options.txt b/meson_options.txt
-index c9d9d4d13bf..e3fe51aa371 100644
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -52,7 +52,7 @@ option(
- 'dri-drivers',
- type : 'array',
- value : ['auto'],
-- choices : ['auto', 'i915', 'i965', 'r100', 'r200', 'nouveau', 'swrast'],
-+ choices : ['', 'auto', 'i915', 'i965', 'r100', 'r200', 'nouveau', 'swrast'],
- description : 'List of dri drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
- )
- option(
-@@ -72,7 +72,7 @@ option(
- type : 'array',
- value : ['auto'],
- choices : [
-- 'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno',
-+ '', 'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno',
- 'swrast', 'v3d', 'vc4', 'etnaviv', 'tegra', 'i915', 'svga', 'virgl',
- 'swr', 'panfrost', 'iris', 'lima', 'zink'
- ],
-@@ -179,7 +179,7 @@ option(
- 'vulkan-drivers',
- type : 'array',
- value : ['auto'],
-- choices : ['auto', 'amd', 'broadcom', 'freedreno', 'intel', 'swrast'],
-+ choices : ['', 'auto', 'amd', 'broadcom', 'freedreno', 'intel', 'swrast'],
- description : 'List of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
- )
- option(
---
-2.28.0
-