summaryrefslogtreecommitdiffstats
path: root/meta-agl-bsp/meta-ti/recipes-arago/weston/weston/0004-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
diff options
context:
space:
mode:
authorMatt Porter <mporter@konsulko.com>2016-12-28 00:50:41 +0200
committerMatt Porter <mporter@konsulko.com>2016-12-28 00:50:41 +0200
commitbefd0bddd1b5bc36c3729988a7c9cc6b5b390641 (patch)
tree4d118789b76fd18ed185fcb7e1318489e6e9829a /meta-agl-bsp/meta-ti/recipes-arago/weston/weston/0004-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
parentf4fc7e9c874b4642b56091274ba9ae971c4c6dc3 (diff)
meta-ti: weston: remove unneeded ivi shell patches and use standard ivi-controller
The meta-arago layer included a number of ivi shell patches that are not needed in AGL. One multi screen patch conflicts with another bbappend causing build issues as it's already included by a less specific layer. Further, the added "simple TI layout controller", autolaunch, and screenshooter features are all unneeded in AGL. These are removed to reduce the amount of non-essential patches we carry within AGL. As a result of this, all weston.ini directives which use the "simple TI layout controller" directives are removed and weston.ini is switched to use the standard ivi-controller so that WindowManager may run and access the ILM API. The end result is that WindowManager and HomeScreen may now be launched after boot successfully. Change-Id: I8d777fbd4c02acbf9d3ccaeb215b651a8562d5bb Signed-off-by: Matt Porter <mporter@konsulko.com>
Diffstat (limited to 'meta-agl-bsp/meta-ti/recipes-arago/weston/weston/0004-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch')
-rw-r--r--meta-agl-bsp/meta-ti/recipes-arago/weston/weston/0004-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/meta-agl-bsp/meta-ti/recipes-arago/weston/weston/0004-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch b/meta-agl-bsp/meta-ti/recipes-arago/weston/weston/0004-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
deleted file mode 100644
index ea5ef0024..000000000
--- a/meta-agl-bsp/meta-ti/recipes-arago/weston/weston/0004-ivi-shell-fix-layout_layer.view_list-is-not-initiliz.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 2a07b287851c974d684aa152486a63062aadd219 Mon Sep 17 00:00:00 2001
-From: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
-Date: Wed, 25 Nov 2015 23:36:57 +0900
-Subject: [PATCH 4/7] ivi-shell: fix layout_layer.view_list is not initilized
- per a screen.
-
-This is potential bug when it supports several screens. If view_list is
-initilized here, the views, which are set by the previous screen, are
-cleared. So View list shall be initilized in front of wl_list_for_each
-of all screens.
-
-Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>
-Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
----
- ivi-shell/ivi-layout.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/ivi-shell/ivi-layout.c b/ivi-shell/ivi-layout.c
-index 9dbebb3..a7c5e22 100644
---- a/ivi-shell/ivi-layout.c
-+++ b/ivi-shell/ivi-layout.c
-@@ -1000,6 +1000,9 @@ commit_screen_list(struct ivi_layout *layout)
- struct ivi_layout_layer *ivilayer = NULL;
- struct ivi_layout_layer *next = NULL;
- struct ivi_layout_surface *ivisurf = NULL;
-+
-+ /* Clear view list of layout ivi_layer */
-+ wl_list_init(&layout->layout_layer.view_list.link);
-
- wl_list_for_each(iviscrn, &layout->screen_list, link) {
- if (iviscrn->order.dirty) {
-@@ -1024,9 +1027,6 @@ commit_screen_list(struct ivi_layout *layout)
- iviscrn->order.dirty = 0;
- }
-
-- /* Clear view list of layout ivi_layer */
-- wl_list_init(&layout->layout_layer.view_list.link);
--
- wl_list_for_each(ivilayer, &iviscrn->order.layer_list, order.link) {
- if (ivilayer->prop.visibility == false)
- continue;
---
-2.4.5
-