summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch
diff options
context:
space:
mode:
authorTom Hochstein <tom.hochstein@nxp.com>2023-05-17 09:51:10 -0700
committerTom Hochstein <tom.hochstein@nxp.com>2023-05-17 13:24:46 -0700
commite7ff896868a592dcba3ce2b549116c1e4e7fec11 (patch)
tree3417b0f670394d1466ef6213f4b8dbf3d3c6810c /recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch
parente01382f94a11732d230cc4e2329c01e3219d3932 (diff)
downloadmeta-freescale-e7ff896868a592dcba3ce2b549116c1e4e7fec11.tar.gz
weston: Upgrade 10.0.1.imx -> 10.0.3.imx
- Update OE-Core copy to 4b42fd8 - Drop dont-use-plane-add-prop.patch - Move fbdev dependency on libdrm to i.MX overrides section - Make removal of wayland and x11 from PACKAGECONFIG overridable Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Diffstat (limited to 'recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch')
-rw-r--r--recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch b/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch
deleted file mode 100644
index a4444e5d..00000000
--- a/recipes-graphics/wayland/weston/dont-use-plane-add-prop.patch
+++ /dev/null
@@ -1,23 +0,0 @@
1Fix atomic modesetting with musl
2
3atomic modesetting seems to fail with drm weston backend and this patch fixes
4it, below errors are seen before weston exits
5
6atomic: couldn't commit new state: Invalid argument
7
8Upstream-Status: Submitted [https://gitlab.freedesktop.org/wayland/weston/-/issues/158]
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10
11--- a/libweston/backend-drm/kms.c
12+++ b/libweston/backend-drm/kms.c
13@@ -1168,8 +1168,8 @@ drm_pending_state_apply_atomic(struct dr
14 wl_list_for_each(plane, &b->plane_list, link) {
15 drm_debug(b, "\t\t[atomic] starting with plane %lu disabled\n",
16 (unsigned long) plane->plane_id);
17- plane_add_prop(req, plane, WDRM_PLANE_CRTC_ID, 0);
18- plane_add_prop(req, plane, WDRM_PLANE_FB_ID, 0);
19+ //plane_add_prop(req, plane, WDRM_PLANE_CRTC_ID, 0);
20+ //plane_add_prop(req, plane, WDRM_PLANE_FB_ID, 0);
21 }
22
23 flags |= DRM_MODE_ATOMIC_ALLOW_MODESET;