summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/weston
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-08-11 21:58:03 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-14 08:13:32 +0100
commit4675bd334958e9a839f8b23dee1824d67ecabc04 (patch)
tree5c5f967269bca512eb86428cc9704df65aa4ffe1 /meta/recipes-graphics/wayland/weston
parent3dff0917e7635dbca949b115fc95b7dfc8e5d18f (diff)
downloadpoky-4675bd334958e9a839f8b23dee1824d67ecabc04.tar.gz
weston: upgrade 10.0.1 -> 10.0.2
Drop dont-use-plane-add-prop.patch as issue is fixed elsewhere (see the link in the patch). (From OE-Core rev: ed54ef8f094fb6759316781a5ac626af40ad8ffc) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland/weston')
-rw-r--r--meta/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch b/meta/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch
deleted file mode 100644
index 1ac0695222..0000000000
--- a/meta/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From ece4c3d261aeec230869c0304ed1011ff6837c16 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 12 Sep 2020 14:04:04 -0700
4Subject: [PATCH] Fix atomic modesetting with musl
5
6atomic modesetting seems to fail with drm weston backend and this patch fixes
7it, below errors are seen before weston exits
8
9atomic: couldn't commit new state: Invalid argument
10
11Upstream-Status: Submitted [https://gitlab.freedesktop.org/wayland/weston/-/issues/158]
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13
14---
15 libweston/backend-drm/kms.c | 4 ++--
16 1 file changed, 2 insertions(+), 2 deletions(-)
17
18diff --git a/libweston/backend-drm/kms.c b/libweston/backend-drm/kms.c
19index 780d007..9994da1 100644
20--- a/libweston/backend-drm/kms.c
21+++ b/libweston/backend-drm/kms.c
22@@ -1142,8 +1142,8 @@ drm_pending_state_apply_atomic(struct drm_pending_state *pending_state,
23 wl_list_for_each(plane, &b->plane_list, link) {
24 drm_debug(b, "\t\t[atomic] starting with plane %lu disabled\n",
25 (unsigned long) plane->plane_id);
26- plane_add_prop(req, plane, WDRM_PLANE_CRTC_ID, 0);
27- plane_add_prop(req, plane, WDRM_PLANE_FB_ID, 0);
28+ //plane_add_prop(req, plane, WDRM_PLANE_CRTC_ID, 0);
29+ //plane_add_prop(req, plane, WDRM_PLANE_FB_ID, 0);
30 }
31
32 flags |= DRM_MODE_ATOMIC_ALLOW_MODESET;