summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2016-08-26 13:37:34 +0300
committerSamuli Piippo <samuli.piippo@qt.io>2016-09-12 12:33:59 +0000
commit58becb36b8798a417c59ff903758446a2d18045b (patch)
tree1e3fd34f535523b8c49a9089bebc7770e83c78c8
parent9e75144892f905a30c76c43da7d362820de5b615 (diff)
downloadmeta-boot2qt-58becb36b8798a417c59ff903758446a2d18045b.tar.gz
udev: no need for udev when using systemd
udev was replaced with eudev, but we are already using udev from systemd. Change-Id: I58df4017cec1aa3399ed58a1994a474c30a5d6cf Reviewed-by: Teemu Holappa <teemu.holappa@theqtcompany.com>
-rw-r--r--recipes/udev/udev/0001-support-multitouch-screens.patch28
-rw-r--r--recipes/udev/udev/beagleboard/udev-cache.default4
-rw-r--r--recipes/udev/udev/beaglebone/udev-cache.default4
-rw-r--r--recipes/udev/udev_182.bbappend33
4 files changed, 0 insertions, 69 deletions
diff --git a/recipes/udev/udev/0001-support-multitouch-screens.patch b/recipes/udev/udev/0001-support-multitouch-screens.patch
deleted file mode 100644
index aacb8e0..0000000
--- a/recipes/udev/udev/0001-support-multitouch-screens.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From 51a9f15b10357a4ad1d8b2e50ec14031f68c0d48 Mon Sep 17 00:00:00 2001
2From: Samuli Piippo <samuli.piippo@digia.com>
3Date: Fri, 12 Apr 2013 09:41:41 +0300
4Subject: [PATCH] support multitouch screens
5
6---
7 src/udev-builtin-input_id.c | 5 +++--
8 1 file changed, 3 insertions(+), 2 deletions(-)
9
10diff --git a/src/udev-builtin-input_id.c b/src/udev-builtin-input_id.c
11index a062ef7..0c5358e 100644
12--- a/src/udev-builtin-input_id.c
13+++ b/src/udev-builtin-input_id.c
14@@ -108,8 +108,9 @@ static void test_pointers (struct udev_device *dev,
15 return;
16 }
17
18- if (test_bit (EV_ABS, bitmask_ev) &&
19- test_bit (ABS_X, bitmask_abs) && test_bit (ABS_Y, bitmask_abs)) {
20+ if (test_bit (EV_ABS, bitmask_ev) && (
21+ (test_bit (ABS_X, bitmask_abs) && test_bit (ABS_Y, bitmask_abs)) ||
22+ (test_bit (ABS_MT_POSITION_X, bitmask_abs) && test_bit (ABS_MT_POSITION_Y, bitmask_abs)))) {
23 if (test_bit (BTN_STYLUS, bitmask_key) || test_bit (BTN_TOOL_PEN, bitmask_key))
24 udev_builtin_add_property(dev, test, "ID_INPUT_TABLET", "1");
25 else if (test_bit (BTN_TOOL_FINGER, bitmask_key) && !test_bit (BTN_TOOL_PEN, bitmask_key))
26--
271.7.10.4
28
diff --git a/recipes/udev/udev/beagleboard/udev-cache.default b/recipes/udev/udev/beagleboard/udev-cache.default
deleted file mode 100644
index d0050b8..0000000
--- a/recipes/udev/udev/beagleboard/udev-cache.default
+++ /dev/null
@@ -1,4 +0,0 @@
1# Default for /etc/init.d/udev
2
3# Comment this out to disable device cache
4#DEVCACHE="/etc/dev.tar"
diff --git a/recipes/udev/udev/beaglebone/udev-cache.default b/recipes/udev/udev/beaglebone/udev-cache.default
deleted file mode 100644
index d0050b8..0000000
--- a/recipes/udev/udev/beaglebone/udev-cache.default
+++ /dev/null
@@ -1,4 +0,0 @@
1# Default for /etc/init.d/udev
2
3# Comment this out to disable device cache
4#DEVCACHE="/etc/dev.tar"
diff --git a/recipes/udev/udev_182.bbappend b/recipes/udev/udev_182.bbappend
deleted file mode 100644
index bb44f9f..0000000
--- a/recipes/udev/udev_182.bbappend
+++ /dev/null
@@ -1,33 +0,0 @@
1############################################################################
2##
3## Copyright (C) 2016 The Qt Company Ltd.
4## Contact: https://www.qt.io/licensing/
5##
6## This file is part of the Boot to Qt meta layer.
7##
8## $QT_BEGIN_LICENSE:GPL$
9## Commercial License Usage
10## Licensees holding valid commercial Qt licenses may use this file in
11## accordance with the commercial license agreement provided with the
12## Software or, alternatively, in accordance with the terms contained in
13## a written agreement between you and The Qt Company. For licensing terms
14## and conditions see https://www.qt.io/terms-conditions. For further
15## information use the contact form at https://www.qt.io/contact-us.
16##
17## GNU General Public License Usage
18## Alternatively, this file may be used under the terms of the GNU
19## General Public License version 3 or (at your option) any later version
20## approved by the KDE Free Qt Foundation. The licenses are as published by
21## the Free Software Foundation and appearing in the file LICENSE.GPL3
22## included in the packaging of this file. Please review the following
23## information to ensure the GNU General Public License requirements will
24## be met: https://www.gnu.org/licenses/gpl-3.0.html.
25##
26## $QT_END_LICENSE$
27##
28############################################################################
29
30FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
31
32SRC_URI += "file://0001-support-multitouch-screens.patch"
33