summaryrefslogtreecommitdiffstats
path: root/recipes-graphics
diff options
context:
space:
mode:
authorAndrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>2020-09-30 09:11:00 +0000
committerOtavio Salvador <otavio@ossystems.com.br>2020-09-30 08:54:24 -0300
commit86d7f2108ce94199a9c24e19c8041175b2dea07f (patch)
treeae31628ade19b42ca44105d083b243973f9c4904 /recipes-graphics
parent4db7692ca5ec64802cb13f99f940116689822831 (diff)
downloadmeta-freescale-86d7f2108ce94199a9c24e19c8041175b2dea07f.tar.gz
waffle: revert "waffle: fix patch fuzz QA warning"
Current waffle release present on the dunfell branch in upstream is 1.6.0, while master upstream version is 1.6.1. Due to this version mismatch, patches applied on master do not apply clean on dunfell release. Revert commit [81262efe6e9eb8ac0ed345abccbf80233707dcc3] which resolved patch fuzz when waffle 1.6.1 is built, and keep the old versions of patch files which are matching waffle 1.6.0. Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
Diffstat (limited to 'recipes-graphics')
-rw-r--r--recipes-graphics/waffle/waffle/0001-meson-Add-missing-wayland-dependency-on-EGL.patch10
-rw-r--r--recipes-graphics/waffle/waffle/0002-meson-Separate-surfaceless-option-from-x11.patch10
2 files changed, 12 insertions, 8 deletions
diff --git a/recipes-graphics/waffle/waffle/0001-meson-Add-missing-wayland-dependency-on-EGL.patch b/recipes-graphics/waffle/waffle/0001-meson-Add-missing-wayland-dependency-on-EGL.patch
index b5225693..f613386f 100644
--- a/recipes-graphics/waffle/waffle/0001-meson-Add-missing-wayland-dependency-on-EGL.patch
+++ b/recipes-graphics/waffle/waffle/0001-meson-Add-missing-wayland-dependency-on-EGL.patch
@@ -1,4 +1,4 @@
1From 87fc7761cff5931a58984c7f7e78f421a0660e0e Mon Sep 17 00:00:00 2001 1From 932c21d2851fe79bf4fe55d3b613f71f65762adb Mon Sep 17 00:00:00 2001
2From: Tom Hochstein <tom.hochstein@nxp.com> 2From: Tom Hochstein <tom.hochstein@nxp.com>
3Date: Wed, 22 Apr 2020 13:40:04 -0500 3Date: Wed, 22 Apr 2020 13:40:04 -0500
4Subject: [PATCH] meson: Add missing wayland dependency on EGL 4Subject: [PATCH] meson: Add missing wayland dependency on EGL
@@ -9,13 +9,12 @@ missing dependency.
9Upstream-Status: Pending 9Upstream-Status: Pending
10 10
11Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> 11Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
12
13--- 12---
14 meson.build | 6 ++++-- 13 meson.build | 6 ++++--
15 1 file changed, 4 insertions(+), 2 deletions(-) 14 1 file changed, 4 insertions(+), 2 deletions(-)
16 15
17diff --git a/meson.build b/meson.build 16diff --git a/meson.build b/meson.build
18index ca8b127..efb51f4 100644 17index 957737c..4ebb022 100644
19--- a/meson.build 18--- a/meson.build
20+++ b/meson.build 19+++ b/meson.build
21@@ -65,6 +65,7 @@ dep_gl = _dep_null 20@@ -65,6 +65,7 @@ dep_gl = _dep_null
@@ -28,7 +27,7 @@ index ca8b127..efb51f4 100644
28 dep_udev = _dep_null 27 dep_udev = _dep_null
29@@ -90,7 +91,8 @@ else 28@@ -90,7 +91,8 @@ else
30 dep_wayland_client = dependency( 29 dep_wayland_client = dependency(
31 'wayland-client', version : '>= 1.10', required : get_option('wayland'), 30 'wayland-client', version : '>= 1.0', required : get_option('wayland'),
32 ) 31 )
33- dep_wayland_egl = dependency( 32- dep_wayland_egl = dependency(
34+ dep_wayland_egl = dependency('egl', required : get_option('wayland')) 33+ dep_wayland_egl = dependency('egl', required : get_option('wayland'))
@@ -45,3 +44,6 @@ index ca8b127..efb51f4 100644
45 build_glx = dep_gl.found() 44 build_glx = dep_gl.found()
46 build_gbm = dep_gbm.found() and dep_udev.found() 45 build_gbm = dep_gbm.found() and dep_udev.found()
47 build_surfaceless = dep_egl.found() 46 build_surfaceless = dep_egl.found()
47--
482.17.1
49
diff --git a/recipes-graphics/waffle/waffle/0002-meson-Separate-surfaceless-option-from-x11.patch b/recipes-graphics/waffle/waffle/0002-meson-Separate-surfaceless-option-from-x11.patch
index 9d5003e2..3f9f3b1c 100644
--- a/recipes-graphics/waffle/waffle/0002-meson-Separate-surfaceless-option-from-x11.patch
+++ b/recipes-graphics/waffle/waffle/0002-meson-Separate-surfaceless-option-from-x11.patch
@@ -1,7 +1,7 @@
1From 12ac4372cc6a66e83b61f8510bdaa4f11c72113d Mon Sep 17 00:00:00 2001 1From 451381a61ad0c96e870da2325fc188eaa3d91fec Mon Sep 17 00:00:00 2001
2From: Tom Hochstein <tom.hochstein@nxp.com> 2From: Tom Hochstein <tom.hochstein@nxp.com>
3Date: Wed, 22 Apr 2020 14:08:36 -0500 3Date: Wed, 22 Apr 2020 14:08:36 -0500
4Subject: [PATCH] meson: Separate surfaceless option from x11 4Subject: [PATCH 2/2] meson: Separate surfaceless option from x11
5 5
6Allow surfaceless build separate from the x11 option. 6Allow surfaceless build separate from the x11 option.
7Also require gbm for surfaceless build. 7Also require gbm for surfaceless build.
@@ -9,13 +9,12 @@ Also require gbm for surfaceless build.
9Upstream-Status: Pending 9Upstream-Status: Pending
10 10
11Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com> 11Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
12
13--- 12---
14 meson.build | 5 ++++- 13 meson.build | 5 ++++-
15 1 file changed, 4 insertions(+), 1 deletion(-) 14 1 file changed, 4 insertions(+), 1 deletion(-)
16 15
17diff --git a/meson.build b/meson.build 16diff --git a/meson.build b/meson.build
18index efb51f4..0ee3ee5 100644 17index 4ebb022..0705f61 100644
19--- a/meson.build 18--- a/meson.build
20+++ b/meson.build 19+++ b/meson.build
21@@ -72,6 +72,7 @@ dep_udev = _dep_null 20@@ -72,6 +72,7 @@ dep_udev = _dep_null
@@ -42,3 +41,6 @@ index efb51f4..0ee3ee5 100644
42 endif 41 endif
43 42
44 dep_bash = dependency('bash-completion', required : false) 43 dep_bash = dependency('bash-completion', required : false)
44--
452.17.1
46