summaryrefslogtreecommitdiffstats
path: root/meta-agl-bsp/meta-freescale-layer/recipes-graphics/wayland/weston-2.0.0/fix-ivi-layout-for-IMX6-fbdev.patch
diff options
context:
space:
mode:
authorBechir Mghirbi <bechir.mghirbi@grammer.com>2019-03-22 08:00:38 +0100
committerBechir Mghirbi <mghirbi.bechir@gmail.com>2019-04-23 19:31:49 +0000
commit54e9bf9eda7d668df5d71dcc5974c22db5e3eecb (patch)
tree94dbe8b260cb2740e243d71dc61a2a454b698b14 /meta-agl-bsp/meta-freescale-layer/recipes-graphics/wayland/weston-2.0.0/fix-ivi-layout-for-IMX6-fbdev.patch
parentcfc5a8fdce67a750e5e786ee51907abdedf86249 (diff)
Fix imx6qdlsabreauto machine configuration
The imx6qsabreauto target was falling behind and could not be build for GG-7.0. The commit 808fff5 from 'AGL-repo' removed reference to external repos meta-freescale-3rdparty and meta-freescale-distro. However 'meta-agl' was not updated to follow up on this change which broke configuration for imx6 based targets. This patch makes the required changes to fix the imx6qsabreauto machine configuration: - removes reference to deleted layers: meta-freescale-3rdparty and meta-freescale-distro - updates MACHINE value to imx6qdlsabreauto as defined in meta-freescale layer - deletes reference to packagegroup-fscl-* not required to build AGL - add "agl-medium-arm-compiler" to DISTRO_FEATURES so DEFAULTTUNE is correctly set to 'armv7athf-neon' v2 (jsmoeller): moved board name to match MACHINE v3 (bechir.mghirbi): - remove wayland_2.0.0 as weston_4.0.0.imx is used. - use default IMAGE_FSTYPES as bitbake is complaining that no IMAGE_CMD defined for IMAGE_FSTYPES entry 'sdcard' - Add CFG80211 Kernel configuration Change-Id: Ib8b1d254972c737725247a5b13ce333e8ef9d4dc Signed-off-by: Bechir Mghirbi <bechir.mghirbi@grammer.com> Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-agl-bsp/meta-freescale-layer/recipes-graphics/wayland/weston-2.0.0/fix-ivi-layout-for-IMX6-fbdev.patch')
-rw-r--r--meta-agl-bsp/meta-freescale-layer/recipes-graphics/wayland/weston-2.0.0/fix-ivi-layout-for-IMX6-fbdev.patch53
1 files changed, 0 insertions, 53 deletions
diff --git a/meta-agl-bsp/meta-freescale-layer/recipes-graphics/wayland/weston-2.0.0/fix-ivi-layout-for-IMX6-fbdev.patch b/meta-agl-bsp/meta-freescale-layer/recipes-graphics/wayland/weston-2.0.0/fix-ivi-layout-for-IMX6-fbdev.patch
deleted file mode 100644
index a0ef210e9..000000000
--- a/meta-agl-bsp/meta-freescale-layer/recipes-graphics/wayland/weston-2.0.0/fix-ivi-layout-for-IMX6-fbdev.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 1b6dc7e5815d3aa02fd1d01b1334c03473e5cf72 Mon Sep 17 00:00:00 2001
-From: Mihail Grigorov <michael.grigorov@konsulko.com>
-Date: Wed, 14 Feb 2018 17:12:42 +0200
-Subject: [PATCH] ivi-shell: event_mask must not be cleared after emit
-
-Signed-off-by: Mihail Grigorov <michael.grigorov@konsulko.com>
----
- ivi-shell/ivi-layout.c | 18 ++----------------
- 1 file changed, 2 insertions(+), 16 deletions(-)
-
-diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c
-index 64e4ead8..7d13fc88 100644
---- a/ivi-shell/ivi-layout.c
-+++ b/ivi-shell/ivi-layout.c
-@@ -917,20 +917,6 @@ commit_transition(struct ivi_layout* layout)
- }
-
- static void
--send_surface_prop(struct ivi_layout_surface *ivisurf)
--{
-- wl_signal_emit(&ivisurf->property_changed, ivisurf);
-- ivisurf->pending.prop.event_mask = 0;
--}
--
--static void
--send_layer_prop(struct ivi_layout_layer *ivilayer)
--{
-- wl_signal_emit(&ivilayer->property_changed, ivilayer);
-- ivilayer->pending.prop.event_mask = 0;
--}
--
--static void
- send_prop(struct ivi_layout *layout)
- {
- struct ivi_layout_layer *ivilayer = NULL;
-@@ -938,12 +924,12 @@ send_prop(struct ivi_layout *layout)
-
- wl_list_for_each_reverse(ivilayer, &layout->layer_list, link) {
- if (ivilayer->prop.event_mask)
-- send_layer_prop(ivilayer);
-+ wl_signal_emit(&ivilayer->property_changed, ivilayer);
- }
-
- wl_list_for_each_reverse(ivisurf, &layout->surface_list, link) {
- if (ivisurf->prop.event_mask)
-- send_surface_prop(ivisurf);
-+ wl_signal_emit(&ivisurf->property_changed, ivisurf);
- }
- }
-
---
-2.11.0
-