Removing the fix-ecore-fb-initialization patch as it let ecore open the supplied touchscreen device twice which results in an error on platforms where the touchscreen device node can be opened only once. Furthermore I doubt that it is necessary to open the touchscreen device node more than one time.
Signed-off-by: Simon Busch <[email protected]> --- recipes/efl1/ecore.inc | 2 - .../efl1/ecore/fix-ecore-fb-initialization.patch | 29 -------------------- 2 files changed, 0 insertions(+), 31 deletions(-) delete mode 100644 recipes/efl1/ecore/fix-ecore-fb-initialization.patch diff --git a/recipes/efl1/ecore.inc b/recipes/efl1/ecore.inc index bb7eea5..081572d 100644 --- a/recipes/efl1/ecore.inc +++ b/recipes/efl1/ecore.inc @@ -12,8 +12,6 @@ inherit efl BBCLASSEXTEND = "native" -SRC_URI += "file://fix-ecore-fb-initialization.patch" - do_configure_prepend() { touch ${S}/po/Makefile.in.in || true sed -i -e 's: po::g' ${S}/Makefile.am diff --git a/recipes/efl1/ecore/fix-ecore-fb-initialization.patch b/recipes/efl1/ecore/fix-ecore-fb-initialization.patch deleted file mode 100644 index 2ac61ca..0000000 --- a/recipes/efl1/ecore/fix-ecore-fb-initialization.patch +++ /dev/null @@ -1,29 +0,0 @@ -# -# The whole ecore-fb init logic is somewhat flawed; with this patch we -# get at least a working touchscreen w/ tslib again. -# -# Signed-off-by: Michael 'Mickey' Lauer <[email protected]> -# - -Index: ecore/src/lib/ecore_fb/ecore_fb.c -=================================================================== ---- ecore.orig/src/lib/ecore_fb/ecore_fb.c -+++ ecore/src/lib/ecore_fb/ecore_fb.c -@@ -46,6 +46,9 @@ - - if (!ecore_fb_vt_init()) - return --_ecore_fb_init_count; -+ -+ if (!ecore_fb_ts_init()) -+ return --_ecore_fb_init_count; - - ECORE_FB_EVENT_KEY_DOWN = ecore_event_type_new(); - ECORE_FB_EVENT_KEY_UP = ecore_event_type_new(); -@@ -70,6 +73,7 @@ - if (--_ecore_fb_init_count != 0) - return _ecore_fb_init_count; - -+ ecore_fb_ts_shutdown(); - ecore_fb_vt_shutdown(); - - return _ecore_fb_init_count; -- 1.7.0.4 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
