Re: [Linuxwacom-devel] [PATCH 4/4] Input: wacom: Handle 1024 pressure levels in wacom_tpc_pen

2014-02-27 Thread Aaron Armstrong Skomra
Tested-by: Aaron Skomra On Thu, Jan 30, 2014 at 10:48 AM, Jason Gerecke wrote: > Some tablet PC sensors (e.g. the 0xEC found in the Thinkpad > Yoga) report more than 256 pressure levels and will experience > wraparound unless the full range is read. > > Signed-off-by: Jason Gerecke > --- > dr

Re: [Linuxwacom-devel] [PATCH 3/4] Input: wacom: References to 'wacom->data' should use 'unsigned char*'

2014-02-27 Thread Aaron Armstrong Skomra
Tested-by: Aaron Skomra On Thu, Jan 30, 2014 at 10:48 AM, Jason Gerecke wrote: > 'wacom->data' contains raw binary data and can lead to unexpected > behavior if a byte under examination happens to have its MSB set. > > Signed-off-by: Jason Gerecke > --- > drivers/input/tablet/wacom_wac.c | 27

Re: [Linuxwacom-devel] [PATCH 2/4] Input: wacom: Override 'pressure_max' with value from HID_USAGE_PRESSURE

2014-02-27 Thread Aaron Armstrong Skomra
Tested-by: Aaron Skomra On Thu, Jan 30, 2014 at 10:48 AM, Jason Gerecke wrote: > The 0xEC sensor is used in multiple tablet PCs and curiously has > versions that report 256 levels of pressure (Samsung Slate 7) > as well as versions that report 1024 levels (Lenovo Thinkpad Yoga). > To allow both

Re: [Linuxwacom-devel] [PATCH libwacom] Update README to describe how to add tablet descriptions

2014-11-04 Thread Aaron Armstrong Skomra
Thanks for adding this to the README, I hadn't had any interactions with libwacom yet and wondered how it worked. :) On Mon, Nov 3, 2014 at 2:42 PM, Peter Hutterer wrote: > A missing tablet description is the most common situation that users of > tablets face, let's add it to the README. And sin

[Linuxwacom-devel] [PATCH libwacom] Remove 'System' from IntegratedIn values for dt displays

2014-11-21 Thread Aaron Armstrong Skomra
Corrects the fact that most of the dt displays are identified as being integrated in a system. Signed-off-by: Aaron Skomra --- data/dtf-720.tablet | 2 +- data/dth-2242.tablet | 2 +- data/dti-520.tablet | 2 +- data/dtk-2241.tablet | 2 +- data/dtu-1031.tablet | 2 +- data/dtu-1631.tablet | 2

[Linuxwacom-devel] [PATCH libwacom] Add svg file for dtu-1031

2014-12-04 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Skomra --- data/dtu-1031.tablet | 2 +- data/layouts/dtu-1031.svg | 85 +++ 2 files changed, 86 insertions(+), 1 deletion(-) create mode 100644 data/layouts/dtu-1031.svg diff --git a/data/dtu-1031.tablet b/data/dtu-1031.tabl

Re: [Linuxwacom-devel] [PATCH libwacom] Add svg file for dtu-1031

2014-12-05 Thread Aaron Armstrong Skomra
I will reformat and resend this. On Thu, Dec 4, 2014 at 2:14 PM, Aaron Armstrong Skomra wrote: > Signed-off-by: Aaron Skomra > --- > data/dtu-1031.tablet | 2 +- > data/layouts/dtu-1031.svg | 85 > +++ > 2 files changed, 8

Re: [Linuxwacom-devel] [PATCH libwacom] add svg files for more Intuos tablets

2014-12-09 Thread Aaron Armstrong Skomra
I thought about the side switch, but because the existing the .svg files in the project only only have 2 dimensions (and lack a border), I can't see moving into the 3rd dimension to represent the touch switch with the way things are setup now. Also I don't see the GNOME control panel having to map

Re: [Linuxwacom-devel] [PATCH] Enable GNOME button map support for generic tablet.

2016-03-03 Thread Aaron Armstrong Skomra
On Thu, Jan 14, 2016 at 8:34 PM, Peter Hutterer wrote: > On Wed, Jan 13, 2016 at 10:48:31AM -0800, Aaron Skomra wrote: > > Libwacom_new_from_path() matches the vid/pid from a found device to > > an entry in the database. Devices with entries in libwacom/data have > > a name which identifies the p

[Linuxwacom-devel] [PATCH input-wacom 2/4] backport: Input: wacom_w8001 - w8001_MAX_LENGTH should be 13

2016-07-13 Thread Aaron Armstrong Skomra
Somehow the patch that added two-finger touch support forgot to update W8001_MAX_LENGTH from 11 to 13. Signed-off-by: Ping Cheng Reviewed-by: Peter Hutterer Cc: sta...@vger.kernel.org Signed-off-by: Dmitry Torokhov [jason.gere...@wacom.com: Imported into input-wacom repository (12afb34)] Signed

[Linuxwacom-devel] [PATCH input-wacom 1/4] backport: Input: wacom_w8001 - drop use of ABS_MT_TOOL_TYPE

2016-07-13 Thread Aaron Armstrong Skomra
As of e0361b70175 ("Input: wacom_w8001 - split the touch and pen devices into two devices") the touch events aren't multiplexed over the same device anymore, the use of ABS_MT_TOOL_TYPE is superfluous. And even before then it only ever sent MT_TOOL_TYPE_FINGER anyway. NOTES: 1) This patch backport

[Linuxwacom-devel] [PATCH input-wacom 4/4] backport: HID: wacom: Add fuzz factor to distance and tilt axes

2016-07-13 Thread Aaron Armstrong Skomra
The fuzz present on the distance and tilt axes is noticeable when a puck is present, and userspace (specifically libinput) would like the ability to filter out the noise. To facilitate this, we assign a fuzz value of '1' for the distance and tilt axes. This is large enough to cover most of the natu

[Linuxwacom-devel] [PATCH input-wacom 3/4] backport: Input: wacom_w8001 - ignore invalid pen data packets

2016-07-13 Thread Aaron Armstrong Skomra
ThinkPad X60 Tablet PC (pen only device) sometime posts packets that are larger than W8001_PKTLEN_TPCPEN. NOTE: The w8001 struct has no touch_dev member in 2.6.36 or 2.6.30. Reported-by: Chris J Arges Tested-by: Chris J Arges Signed-off-by: Ping Cheng Reviewed-by: Peter Hutterer Cc: sta...@vg

Re: [Linuxwacom-devel] [PATCH libwacom 0/5] Add information about paired devices

2016-07-15 Thread Aaron Armstrong Skomra
Note that this is a one-way assignment only (atm), you can get from the > tablet to the touch device but not the other way round. > Tested-by: Aaron Armstrong Skomra for the series. > Cheers, > Peter > > ---

[Linuxwacom-devel] [PATCH 02/25] backport: HID: wacom: store the type in wacom->shared for INTUOSHT and INTUOSHT2

2016-10-20 Thread Aaron Armstrong Skomra
: Imported into input-wacom repository (97f9afa)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (ffd4ce9)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_sys.c | 10 +++--- 3.17/wacom_sys.c | 5 +++-- 3.7/wacom_sys.c| 14

[Linuxwacom-devel] [PATCH 06/25] backport: HID: wacom: switch battery to devres

2016-10-20 Thread Aaron Armstrong Skomra
...@wacom.com: Imported into input-wacom repository (b189da9)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (f1754f8)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 64 +--- 1

[Linuxwacom-devel] [PATCH 07/25] backport: HID: wacom: switch inputs to devres

2016-10-20 Thread Aaron Armstrong Skomra
...@wacom.com: Imported into input-wacom repository (3dad188)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (3bd4a8f)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 34 -- 1 file changed, 16

[Linuxwacom-devel] [PATCH 08/25] backport: HID: wacom: put the managed resources in a group

2016-10-20 Thread Aaron Armstrong Skomra
(84dfbd7)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (458c0ea)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom.h | 1 + 3.17/wacom_sys.c | 69 3.17/wacom_wac.c | 2 +- 3.17

[Linuxwacom-devel] [PATCH 03/25] backport: HID: wacom: remove cleanup of wacom->remote_dir from wacom_clean_inputs()

2016-10-20 Thread Aaron Armstrong Skomra
ong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (c424d7c)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_sys.c | 14 +++--- 3.17/wacom_sys.c | 25 ++--- 3.7/wacom_sys.c| 14 +++--- 3 files changed, 28 insertions(+),

[Linuxwacom-devel] [PATCH 13/25] backport: HID: wacom: leds: dynamically allocate LED groups

2016-10-20 Thread Aaron Armstrong Skomra
iri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (a50aac7)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (4f74881)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom.h | 8 +++-- 3.17/wacom_sys.c |

[Linuxwacom-devel] [PATCH 01/25] backport: HID: wacom: actually report the battery level for wireless connected

2016-10-20 Thread Aaron Armstrong Skomra
sina [aaron.sko...@wacom.com: Imported into input-wacom repository (d453b87)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (ea3af31)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_wac.c | 3 ++- 3.17/wacom_wac.c | 3 ++- 3.7/wacom_wac

[Linuxwacom-devel] [PATCH 05/25] backport: HID: wacom: use one work queue per task

2016-10-20 Thread Aaron Armstrong Skomra
Looks like the battery hijacked the wireless worker. That's not fair so use a work queue per task. Signed-off-by: Benjamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (d17d1f1)] Signed-off-by: Aaron Armstrong S

[Linuxwacom-devel] [PATCH 10/25] backport: HID: wacom: use devm_kasprintf for allocating the name of the remote

2016-10-20 Thread Aaron Armstrong Skomra
njamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (c1f5409)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (0f1b043)] Signed-off-by: Aaron Armstrong Skomra ---

[Linuxwacom-devel] [PATCH 11/25] backport: HID: wacom: use devres to allocate driver data

2016-10-20 Thread Aaron Armstrong Skomra
Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (1bdda0a)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.30/wacom_sys.c | 4 +--- 2.6.36/wacom_sys.c | 4 +--- 2.6.38/wacom_sys.c | 5 ++--- 3.17/wacom_sys.c | 4 +--- 3.7/wacom_sys.c| 5 ++--- 5 files changed, 7

[Linuxwacom-devel] [PATCH 04/25] backport: HID: wacom: untie leds from inputs

2016-10-20 Thread Aaron Armstrong Skomra
(85d2c77)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (5fba033)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_sys.c | 21 +++-- 3.17/wacom_sys.c | 20 +++- 3.7/wacom_sys.c| 22

[Linuxwacom-devel] [PATCH 14/25] backport: HID: wacom: EKR: add a worker to add/remove resources on addition/removal

2016-10-20 Thread Aaron Armstrong Skomra
...@wacom.com: Imported into input-wacom repository (e6f2813)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (0cf7522)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom.h | 11 ++-- 2.6.38/wacom_sys.c | 79

[Linuxwacom-devel] [PATCH 17/25] backport: HID: wacom: EKR: have proper allocator and destructor

2016-10-20 Thread Aaron Armstrong Skomra
Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (04bfa27)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (d1be8d4)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38

[Linuxwacom-devel] [PATCH 19/25] backport: HID: wacom: EKR: have one array of struct remotes instead of many arrays

2016-10-20 Thread Aaron Armstrong Skomra
From: Benjamin Tissoires No functional changes, just a prep patch for the one after. Signed-off-by: Benjamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (e7749f6)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko

[Linuxwacom-devel] [PATCH 18/25] backport: HID: wacom: EKR: use devres groups to manage resources

2016-10-20 Thread Aaron Armstrong Skomra
m.com: Imported into input-wacom repository (f9036bd)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (5457b33)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_sys.c | 49 ++--- 3.17/wacom_

[Linuxwacom-devel] [PATCH 12/25] backport: HID: wacom: devres manage the shared data too

2016-10-20 Thread Aaron Armstrong Skomra
ked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (1c817c8)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (561e444)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.

[Linuxwacom-devel] [PATCH 16/25] backport: HID: wacom: rework fail path in probe() and parse_and_register()

2016-10-20 Thread Aaron Armstrong Skomra
osina [aaron.sko...@wacom.com: Imported into input-wacom repository (3888b0d)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (5082afb)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 9 - 1 file changed, 4 insertions(+), 5 dele

[Linuxwacom-devel] [PATCH 20/25] backport: HID: wacom: EKR: allocate one input node per remote

2016-10-20 Thread Aaron Armstrong Skomra
Signed-off-by: Benjamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (7c35dc3)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (9447bd6)] Signed-off-by: Aaron Ar

[Linuxwacom-devel] [PATCH 21/25] backport: HID: wacom: EKR: have one power_supply per remote

2016-10-20 Thread Aaron Armstrong Skomra
l the information we need for a battery. This backport works around the split in the battery path at kernel 4.1. Signed-off-by: Benjamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (59d69bc)] Signed-off-by: Aaron Armstrong S

[Linuxwacom-devel] [PATCH 09/25] backport: HID: wacom: convert LEDs to devres

2016-10-20 Thread Aaron Armstrong Skomra
parent kobject. [1] https://patchwork.kernel.org/patch/7526551/ [2] https://lkml.org/lkml/2013/3/14/728 Signed-off-by: Benjamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (2df68a8)] Signed-off-by: Aaron Armstrong Skomra

[Linuxwacom-devel] [PATCH 25/25] backport: HID: wacom: power_supply: provide the actual model_name

2016-10-20 Thread Aaron Armstrong Skomra
Instead of displaying a generic "tablet", now g-c-c shows a pretty "Wacom Intuos Pro S (WL)". Signed-off-by: Benjamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (9956953)] Signed-off-by: Aa

[Linuxwacom-devel] [PATCH 22/25] backport: HID: wacom: EKR: attach the power_supply on first connection

2016-10-20 Thread Aaron Armstrong Skomra
Or Gnome complains about an empty battery. Signed-off-by: Benjamin Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (9f1015d)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom

[Linuxwacom-devel] [PATCH 24/25] backport: HID: wacom: power_supply: remove ac information

2016-10-20 Thread Aaron Armstrong Skomra
Tissoires Acked-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (136ae5e)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (d35475c)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom.

[Linuxwacom-devel] [PATCH 15/25] backport: HID: wacom: EKR: have the wacom resources dynamically allocated

2016-10-20 Thread Aaron Armstrong Skomra
d-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (3c055ea)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom.h | 13 +++-- 2.6.38/wacom_sys.c | 144 ++--- 2.6.38/wacom_wac.c | 12 +++-- 2

[Linuxwacom-devel] [PATCH 23/25] backport: HID: wacom: power_supply: mark the type as USB

2016-10-20 Thread Aaron Armstrong Skomra
m.com: Imported into input-wacom repository (9698329)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (06ab7bd)] Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_sys.c | 2 +- 3.17/wacom_sys.c | 4 ++-- 3.7/wacom_sys.c| 2 +- 3 f

Re: [Linuxwacom-devel] [PATCH input-wacom C 14/17] backport: HID: input: Recognize ABS_WHEEL in hidinput_calc_abs_res

2016-11-29 Thread Aaron Armstrong Skomra
On Wed, Nov 16, 2016 at 11:18 AM, Jason Gerecke wrote: > The "Steering" usage (HID_UP_SIMULATION | 0xc8) is defined in HUT 1.12 as > follows: > > "A steering wheel is a single degree-of-freedom device that rotates about > an axis. The zero position is always the neutral or 'straight ahead' > posi

[Linuxwacom-devel] [PATCH libwacom] data: Add support for the second generation Intuos Pro

2017-01-30 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- data/intuos-pro-2-l.tablet | 67 + data/intuos-pro-2-m.tablet | 67 + data/layouts/intuos-pro-2-l.svg | 323 data/layouts/intuos-pro-2-m.svg | 323

Re: [Linuxwacom-devel] [PATCH libwacom] data: Add support for the second generation Intuos Pro

2017-01-31 Thread Aaron Armstrong Skomra
n 30, 2017 at 09:03:37AM -0800, Aaron Armstrong Skomra wrote: > > Signed-off-by: Aaron Armstrong Skomra > > --- > > data/intuos-pro-2-l.tablet | 67 + > > data/intuos-pro-2-m.tablet | 67 + > > data/layouts/intuos-pro-2-l.svg | 323

[Linuxwacom-devel] [PATCH v2] data: Add support for the second generation Intuos Pro

2017-01-31 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- v2: correct Styli list in .tablet files and fix button labels in .svg files data/intuos-pro-2-l.tablet | 67 + data/intuos-pro-2-m.tablet | 67 + data/layouts/intuos-pro-2-l.svg | 323

Re: [Linuxwacom-devel] Adding support for PTH-660P (Intuos Pro M Paper Edition) and others

2017-01-31 Thread Aaron Armstrong Skomra
On Mon, Jan 30, 2017 at 4:47 PM, Edward Kaszubski wrote: > I totally missed the patch covering USB stuff; I see now that all features > appear to be handled via the HID pipeline, including touch. What's the > recommended procedure for building those patches? I'm used to the > github/pull request

Re: [Linuxwacom-devel] Adding support for PTH-660P (Intuos Pro M Paper Edition) and others

2017-02-01 Thread Aaron Armstrong Skomra
On Mon, Jan 30, 2017 at 3:16 PM, Edward Kaszubski wrote: > Hi Jason and Aaron, > > Haha, it's actually been a great learning experience for me. > > OK great! I looked over the linux-input patches and it looks like they > only cover bluetooth and the non-paper (idProduct 0x360, 0x361) tablets > (h

[Linuxwacom-devel] [PATCH input-wacom 02/12] backport: HID: wacom: remove warning while disconnecting devices

2017-02-14 Thread Aaron Armstrong Skomra
repository (fa2a43d)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/3.17/wacom_sys.c b/3.17/wacom_sys.c index 89cc6a4..e03b69c 100644 --- a/3.17/wacom_sys.c +++ b/3.17/wacom_sys.c @@ -2353,6 +2353,8 @@ static void wacom_remove

[Linuxwacom-devel] [PATCH input-wacom 04/12] backport: HID: wacom: Enable HID_GENERIC codepath for Bluetooth devices

2017-02-14 Thread Aaron Armstrong Skomra
osina [aaron.sko...@wacom.com: Imported into input-wacom repository (b9e0625)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (50e75e3)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 1 + 1 file changed, 1 insertion(+) diff

[Linuxwacom-devel] [PATCH input-wacom 03/12] backport: HID: wacom: do not attempt to switch mode while in probe

2017-02-14 Thread Aaron Armstrong Skomra
nput-wacom repository (a544c61)] Signed-off-by: Jason Gerecke [aaron.sko...@wacom.com: Backported from input-wacom repository (1d20317)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom.h | 1 + 3.17/wacom_sys.c | 27 --- 2 files changed, 21 insertions(+), 7 deletion

[Linuxwacom-devel] [PATCH input-wacom 05/12] backport: HID: wacom: Move WAC_CMD_* into wacom_wac.h

2017-02-14 Thread Aaron Armstrong Skomra
(5ba13c6)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (2160f8c)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 8 3.17/wacom_wac.h | 9 + 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/3.17

[Linuxwacom-devel] [PATCH input-wacom 01/12] backport: HID: wacom: release the resources before leaving despite devm

2017-02-14 Thread Aaron Armstrong Skomra
: Backported from input-wacom repository (4c399ab)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/3.17/wacom_sys.c b/3.17/wacom_sys.c index 5c4773a..89cc6a4 100644 --- a/3.17/wacom_sys.c +++ b/3.17/wacom_sys.c @@ -2353,6 +2353,8

[Linuxwacom-devel] [PATCH input-wacom 09/12] backport: HID: wacom: generic: add vendor defined touch

2017-02-14 Thread Aaron Armstrong Skomra
)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (5b9339e)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom.h | 1 + 3.17/wacom_sys.c | 16 +++- 3.17/wacom_wac.c | 22 +- 3.17/wacom_wac.h | 16

[Linuxwacom-devel] [PATCH input-wacom 07/12] backport: HID: wacom: generic: remove input_event_flag

2017-02-14 Thread Aaron Armstrong Skomra
Input_event_flag duplicates the information we track in wacom_wac->hid_data.inrange_state for the pad. Signed-off-by: Aaron Skomra Reviewed-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (65ef4c1)] Signed-off-by: Aaron Armstrong Sko

[Linuxwacom-devel] [PATCH input-wacom 12/12] backport: HID: wacom: don't apply generic settings to old devices

2017-02-14 Thread Aaron Armstrong Skomra
into input-wacom repository (e7deb15)] Signed-off-by: Jason Gerecke [aaron.sko...@wacom.com: Backported from input-wacom repository (da8bf11)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/3.17/wacom_wac.c b

[Linuxwacom-devel] [PATCH input-wacom 10/12] backport: HID: wacom: generic: support generic touch switch

2017-02-14 Thread Aaron Armstrong Skomra
[aaron.sko...@wacom.com: Imported into input-wacom repository (d2ec58a)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (a67a876)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 26 +++--- 3.17/wacom_wac.c

[Linuxwacom-devel] [PATCH input-wacom 11/12] backport: HID: wacom: generic: support LEDs

2017-02-14 Thread Aaron Armstrong Skomra
driver here. Signed-off-by: Aaron Skomra Reviewed-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (10c55ca)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (fc3d6d5)] Signed-off-by

[Linuxwacom-devel] [PATCH input-wacom 06/12] backport: HID: wacom: Support 2nd-gen Intuos Pro's Bluetooth classic interface

2017-02-14 Thread Aaron Armstrong Skomra
repository (4922cd2)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (75adeee)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_sys.c | 25 +++ 3.17/wacom_wac.c | 197 +++ 3.

[Linuxwacom-devel] [PATCH input-wacom 08/12] backport: HID: wacom: generic: add support for touchring

2017-02-14 Thread Aaron Armstrong Skomra
ned-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (60a2218)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (0dd13ec)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 19 ++-

[Linuxwacom-devel] [PATCH input-wacom] HID: wacom: Bluetooth IRQ for Intuos Pro should handle prox/range

2017-02-14 Thread Aaron Armstrong Skomra
d-off-by: Aaron Armstrong Skomra --- 4.5/wacom_wac.c | 25 +++-- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/4.5/wacom_wac.c b/4.5/wacom_wac.c index bb98ca8..63b2485 100644 --- a/4.5/wacom_wac.c +++ b/4.5/wacom_wac.c @@ -1213,29 +1213,34

[Linuxwacom-devel] [PATCH input-wacom] backport: HID: wacom: Bluetooth IRQ for Intuos Pro should handle prox/range

2017-02-14 Thread Aaron Armstrong Skomra
d-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (386ad64)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 25 +++-- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/3.17/wacom_wac.c b/3.17/wacom_wac.

[Linuxwacom-devel] [PATCH] backport: Correct the resolution for Intuos Pro 2

2017-02-21 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_wac.c | 4 ++-- 3.7/wacom_wac.c| 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/2.6.38/wacom_wac.c b/2.6.38/wacom_wac.c index 80b1e71..115fc98 100644 --- a/2.6.38/wacom_wac.c +++ b/2.6.38/wacom_wac.c @@ -3144,10

[Linuxwacom-devel] [PATCH libwacom] data: add support for Cintiq Pro 13 & 16

2017-03-01 Thread Aaron Armstrong Skomra
These devices have no buttons, hence no .svg files. Signed-off-by: Aaron Armstrong Skomra --- When I run make check on Ubuntu 16.04 this only runs 3 of 4 tests: PASS: load PASS: dbverify PASS: tablet-validity Testsuite

[Linuxwacom-devel] [PATCH input-wacom] backport: Fix parsing of contact_id for Intuos Pro 2

2017-04-03 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- 2.6.30/wacom_wac.c |2 +- 2.6.36/wacom_wac.c |2 +- 2.6.38/wacom_wac.c |2 +- 3.7/wacom_wac.c|2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/2.6.30/wacom_wac.c b/2.6.30/wacom_wac.c index c461e9a..78cd7b7 100644

[Linuxwacom-devel] [PATCH] backport: HID: wacom: generic: sync pad events only for actual packets

2017-04-06 Thread Aaron Armstrong Skomra
: Ping Cheng [aaron.sko...@wacom.com: Imported into input-wacom repository (ed1fa736839e)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported to input-wacom repository (e085d82)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 7 ++- 3.17/wacom_wac.h | 1 + 2

[Linuxwacom-devel] [PATCH] HID: wacom: generic: sync pad events only for actual packets

2017-04-06 Thread Aaron Armstrong Skomra
: Ping Cheng [aaron.sko...@wacom.com: Imported into input-wacom repository (ed1fa736839e)] Signed-off-by: Aaron Armstrong Skomra --- 4.5/wacom_wac.c | 7 ++- 4.5/wacom_wac.h | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/4.5/wacom_wac.c b/4.5/wacom_wac.c index c7199c5

[Linuxwacom-devel] [PATCH] HID: wacom: Move wacom_remote_irq and wacom_remote_status_irq

2017-04-07 Thread Aaron Armstrong Skomra
these functions, it is possible to simply move them down somewhat. This commit moves them to be after the final Intuos IRQ function. Signed-off-by: Jason Gerecke Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported to input-wacom repository (149f6f6b8ff3)] Signed-off-by: Aaron Armstrong

[Linuxwacom-devel] [PATCH input-wacom] backport: HID: wacom: Move wacom_remote_irq and wacom_remote_status_irq

2017-04-07 Thread Aaron Armstrong Skomra
possible to simply move them down somewhat. This commit moves them to be after the final Intuos IRQ function. Signed-off-by: Jason Gerecke Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported to input-wacom repository (149f6f6b8ff3)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko

[Linuxwacom-devel] [PATCH input-wacom 1/2] backport: report width and height for Intuos Pro 2 on 3.7 and 2.6.38

2017-04-13 Thread Aaron Armstrong Skomra
Also remove extra spaces. Signed-off-by: Aaron Armstrong Skomra --- 2.6.30/wacom_wac.c |8 2.6.36/wacom_wac.c |4 ++-- 2.6.38/wacom_wac.c |6 -- 3.7/wacom_wac.c|6 -- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/2.6.30/wacom_wac.c b

[Linuxwacom-devel] [PATCH input-wacom 2/2] backport: use ABS_MT_TOUCH_* instead of ABS_MT_WIDTH_*

2017-04-13 Thread Aaron Armstrong Skomra
WIDTH_*. Signed-off-by: Aaron Armstrong Skomra --- 2.6.38/wacom_wac.c | 15 +++ 3.7/wacom_wac.c| 15 +++ 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/2.6.38/wacom_wac.c b/2.6.38/wacom_wac.c index 8cfcb6c..6a5fb77 100644 --- a/2.6.38/waco

[Linuxwacom-devel] [PATCH] Support recent display devices on older kernels

2017-05-12 Thread Aaron Armstrong Skomra
Older kernels like 2.6.30 will end up with touches interpreted as relative events unless these devices are explicitly added. Signed-off-by: Aaron Armstrong Skomra --- src/wcmUSB.c| 4 src/wcmValidateDevice.c | 8 2 files changed, 12 insertions(+) diff --git a/src

Re: [Linuxwacom-devel] [PATCH] Support recent display devices on older kernels

2017-05-15 Thread Aaron Armstrong Skomra
On Sun, May 14, 2017 at 5:17 PM, Peter Hutterer wrote: > On Fri, May 12, 2017 at 01:37:53PM -0700, Aaron Armstrong Skomra wrote: >> Older kernels like 2.6.30 will end up with touches >> interpreted as relative events unless these devices >> are explicitly added. >&

[Linuxwacom-devel] [PATCH v2] Support recent display devices on older kernels

2017-05-15 Thread Aaron Armstrong Skomra
Older kernels like 2.6.30 will end up with touches interpreted as relative events unless these devices are explicitly added. Signed-off-by: Aaron Armstrong Skomra --- v2 add Touch PIDs to wcmUSB.c's device list src/wcmUSB.c| 8 src/wcmValidateDevice.c | 8 2

[Linuxwacom-devel] [PATCH libwacom] Add .tablet files for Wireless Intuos Pro second generation

2017-05-24 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- data/intuos-pro-2-l-wl.tablet | 67 +++ data/intuos-pro-2-m-wl.tablet | 67 +++ 2 files changed, 134 insertions(+) create mode 100644 data/intuos-pro-2-l-wl.tablet create

[Linuxwacom-devel] [PATCH v2 libwacom] data: Add .tablet files for Wireless Intuos Pro second generation

2017-05-31 Thread Aaron Armstrong Skomra
Also correct width and height for intuos-pro-2-l.tablet, cintiq-pro-13.tablet and cintiq-pro-16.tablet. Signed-off-by: Aaron Armstrong Skomra --- Peter, Good catch, I had just copied those two files from their USB equivalents, so I had to fix intuos-pro-2-l.tablet which had the same error

[Linuxwacom-devel] [PATCH input-wacom] backport: add support for DTH-1152 on 2.6.30, 2.6.36, 2.6.38, and 3.7

2017-07-13 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- 2.6.30/wacom_sys.c | 22 +--- 2.6.30/wacom_wac.c | 55 ++ 2.6.30/wacom_wac.h | 4 2.6.36/wacom_sys.c | 17 +++- 2.6.36/wacom_wac.c | 55

[Linuxwacom-devel] [PATCH libwacom] data: Add .tablet file for DTH-1152

2017-07-13 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- data/dth-1152.tablet | 23 +++ 1 file changed, 23 insertions(+) create mode 100644 data/dth-1152.tablet diff --git a/data/dth-1152.tablet b/data/dth-1152.tablet new file mode 100644 index ..7b22624657bd --- /dev/null

[Linuxwacom-devel] [PATCH xf86-input-wacom] Support DTH-1152 on older kernels

2017-07-13 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- src/wcmUSB.c| 4 +++- src/wcmValidateDevice.c | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/wcmUSB.c b/src/wcmUSB.c index 295286a3db3a..0b5ec57267b2 100644 --- a/src/wcmUSB.c +++ b/src/wcmUSB.c @@ -91,7 +91,7

[Linuxwacom-devel] [PATCH input-wacom 2/2] Also special case CentOS 7.4+

2017-09-28 Thread Aaron Armstrong Skomra
Signed-off-by: Jason Gerecke Signed-off-by: Aaron Armstrong Skomra --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5aad03941a13..3718ae2338d6 100644 --- a/configure.ac +++ b/configure.ac @@ -108,7 +108,7 @@ WCM_ENV_KERNEL

[Linuxwacom-devel] [PATCH input-wacom 4/4] backport: HID: wacom: generic: Reset events back to zero when pen leaves

2017-09-28 Thread Aaron Armstrong Skomra
into input-wacom repository (5b40104edfb0)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (80c2b9b562ee)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a

[Linuxwacom-devel] [ANNOUNCE] input-wacom 0.37.0

2017-09-28 Thread Aaron Armstrong Skomra
This release works around a configuration bug in RHEL 7.4+ and CentOS 7.4+ where newer Wacom devices (in the generic code path) would not work. This release also contains many bug fixes for the generic code path and various other bug fixes. Signed-off-by: Aaron Armstrong Skomra Aaron

[Linuxwacom-devel] [PATCH input-wacom 1/2] Add a special case for RHEL 7.4+

2017-09-28 Thread Aaron Armstrong Skomra
From: Benjamin Tissoires RHEL 7.4 ships both the USB module and the HID version. We need to use the HID version if we do not want users to manually quirk their devices. Compile both modules and make sure we install them properly. Note that on these distributions, wacom_w8001.ko is compiled twic

[Linuxwacom-devel] [PATCH input-wacom 2/4] backport: HID: wacom: generic: Leave tool in prox until it completely leaves sense

2017-09-28 Thread Aaron Armstrong Skomra
ful to for a future userspace-based palm rejection, so this patch modifies the driver to continue sending it. Signed-off-by: Jason Gerecke Reviewed-by: Ping Cheng Signed-off-by: Jiri Kosina [aaron.sko...@wacom.com: Imported into input-wacom repository (4affc2331a70)] Signed-off-by: Aaron Armstrong Sko

[Linuxwacom-devel] [PATCH input-wacom 3/4] backport: HID: wacom: generic: Send BTN_TOOL_PEN in prox once the pen enters range

2017-09-28 Thread Aaron Armstrong Skomra
into input-wacom repository (3e70969e44ee)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (6ee4cd1d8c5d)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/3.17/wacom_wa

[Linuxwacom-devel] [PATCH input-wacom 1/4] backport: HID: wacom: generic: Use generic codepath terminology in wacom_wac_pen_report

2017-09-28 Thread Aaron Armstrong Skomra
ory (7690dd18dded)] Signed-off-by: Aaron Armstrong Skomra [aaron.sko...@wacom.com: Backported from input-wacom repository (d6172ef487c1)] Signed-off-by: Aaron Armstrong Skomra --- 3.17/wacom_wac.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/3.17/wacom_wac

[Linuxwacom-devel] [PATCH 3/3] make sourceforge release optional

2017-10-12 Thread Aaron Armstrong Skomra
Note that the script checks "origin master" in its "top commit" checks etc. so that the script itself does not need to be updated to github for these tests. You need to update your local remotes instead. --- Had to move +list_to="linuxwacom-annou...@lists.sourceforge.net" +list_cc="linuxwa

[Linuxwacom-devel] [PATCH 1/3] remove release script code from other projects

2017-10-12 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- release.sh | 130 + 1 file changed, 1 insertion(+), 129 deletions(-) diff --git a/release.sh b/release.sh index 63afa447ca67..b6c3df7931e9 100755 --- a/release.sh +++ b/release.sh @@ -240,25

[Linuxwacom-devel] [PATCH 2/3] add github to release script

2017-10-12 Thread Aaron Armstrong Skomra
Change release download urls to point to Github. Signed-off-by: Aaron Armstrong Skomra --- I added the line: - module_url=`echo "$full_module_url" | $GREP -o -e "/mesa/.*" -e "/xcb/.*" etc etc etc -e "/linuxwacom/.*"` + module_url=`echo &quo

Re: [Linuxwacom-devel] [PATCH input-wacom] Update MobileStuido Pro / Cintiq Pro pad IRQ to work with Intuos Pro

2017-10-26 Thread Aaron Armstrong Skomra
ngvalue = 35 - (ring & 0x7F); > + ringvalue += 36/2; > + if (ringvalue > 35) > + ringvalue -= 36; > } > else { > /* "Standard" devices */ > + ringvalue = 71 - (ring & 0x7F); >

Re: [Linuxwacom-devel] [PATCH xf86-input-wacom] conf: add Dell Canvas 27 touch

2017-11-03 Thread Aaron Armstrong Skomra
On Fri, Nov 3, 2017 at 7:19 AM, Benjamin Tissoires < benjamin.tissoi...@gmail.com> wrote: > The Dell canvas 27 is an external monitor with pen and touch, but the > pen is provided by Wacom, and the touch by Advanced Silicon. > To have proper touch arbitration, we need to force xf86-input-wacom > t

[Linuxwacom-devel] [PATCH] Intuos Pro 2nd Generation doesn't support the puck.

2017-12-05 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- 2.6.30/wacom_wac.c | 17 ++--- 2.6.36/wacom_wac.c | 17 ++--- 2.6.38/wacom_wac.c | 17 ++--- 3.7/wacom_wac.c| 17 ++--- 4 files changed, 40 insertions(+), 28 deletions(-) diff --git a/2.6.30

Re: [Linuxwacom-devel] [PATCH] Intuos Pro 2nd Generation doesn't support the puck.

2017-12-06 Thread Aaron Armstrong Skomra
On Wed, Dec 6, 2017 at 7:38 AM, Jason Gerecke wrote: > On Tue, Dec 5, 2017 at 2:15 PM, Ping Cheng wrote: > > Yeah, puck’s feature is pretty much replaced by MT’s... > > > > On Tuesday, December 5, 2017, Aaron Armstrong Skomra > > wrote: > >> > &

Re: [Linuxwacom-devel] [PATCH input-wacom 2/6] Fix size of WACOM_PKGLEN_DTH1152

2017-12-19 Thread Aaron Armstrong Skomra
On Mon, Dec 18, 2017 at 5:18 PM, Jason Gerecke wrote: > The plain report format for the DTH-1152 is only 12 bytes in length, > not 17. > 16? I've tested the series on a the DTH-1152. Best, Aaron > > Fixes: 7d79680f21 ("backport: add support for DTH-1152 on 2.6.30, 2.6.36, > 2.6.38, and 3.7") >

Re: [Linuxwacom-devel] [PATCH input-wacom 4/6] Rely on 'wacom_setup_numbered_buttons' in 2.6.30 tree

2017-12-19 Thread Aaron Armstrong Skomra
On Mon, Dec 18, 2017 at 5:18 PM, Jason Gerecke wrote: > The 'wacom_setup_input_capabilities' function was backported in commit > ee0d2bd259 but apparently not all cases of explicitly-set button events > were removed. This finishes the cleanup. > > Fixes: ee0d2bd259 ("backport: HID: wacom: Set but

[Linuxwacom-devel] [PATCH input-wacom] backport: initialize generic device pad variables

2018-01-09 Thread Aaron Armstrong Skomra
Remove complier warnings. Signed-off-by: Aaron Armstrong Skomra --- 2.6.30/wacom_wac.c |2 +- 2.6.36/wacom_wac.c |2 +- 2.6.38/wacom_wac.c |2 +- 3.7/wacom_wac.c|2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/2.6.30/wacom_wac.c b/2.6.30/wacom_wac.c

Re: [Linuxwacom-devel] [PATCH input-wacom] backport: initialize generic device pad variables

2018-01-09 Thread Aaron Armstrong Skomra
On Tue, Jan 9, 2018 at 11:52 AM, Jason Gerecke wrote: > A few nitpicks. > > First, this isn't a backport of an upstream patch, so the 'backport' > tag should be removed from the commit subject. > > On Tue, Jan 9, 2018 at 10:51 AM, Aaron Armstrong Skomra >

[Linuxwacom-devel] [v2ish xf86-input-wacom 2/2] add Github to release.sh script

2018-01-15 Thread Aaron Armstrong Skomra
Require at least 1 of Github/Sourceforge. Signed-off-by: Aaron Armstrong Skomra --- Similar patches were applied to input-wacom in October. This revised patch addresses Peter's comments. I will revise input-wacom's release.sh when this series is accepted here. releas

[Linuxwacom-devel] [v2ish xf86-input-wacom 1/2] remove release script code from other projects

2018-01-15 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- release.sh | 130 + 1 file changed, 1 insertion(+), 129 deletions(-) diff --git a/release.sh b/release.sh index de5799854bfb..a5dff324cc9d 100755 --- a/release.sh +++ b/release.sh @@ -240,25

[Linuxwacom-devel] [PATCH xf86-input-wacom v3 2/2] add Github to release.sh script

2018-01-18 Thread Aaron Armstrong Skomra
Require at least 1 of Github/Sourceforge. Ref: https://github.com/linuxwacom/xf86-input-wacom/issues/10 Signed-off-by: Aaron Armstrong Skomra Reviewed-by: Ping Cheng Reviewed-by: Jason Gerecke --- release.sh | 288 - 1 file changed

[Linuxwacom-devel] [PATCH xf86-input-wacom v3 1/2] remove release script code from other projects

2018-01-18 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- release.sh | 132 + 1 file changed, 2 insertions(+), 130 deletions(-) diff --git a/release.sh b/release.sh index de5799854bfb..f12073f97f3b 100755 --- a/release.sh +++ b/release.sh @@ -221,7

[Linuxwacom-devel] [input-wacom] release.sh: Synchronize with changes made to xf86-input-wacom's release.sh

2018-01-26 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- release.sh | 88 ++ 1 file changed, 54 insertions(+), 34 deletions(-) diff --git a/release.sh b/release.sh index f8a484321fdd..3ca2f72d9378 100755 --- a/release.sh +++ b/release.sh @@ -15,6

[Linuxwacom-devel] [PATCH libwacom] data: Add data and SVG files for DTK-2451 and DTH-2452

2018-01-30 Thread Aaron Armstrong Skomra
Signed-off-by: Aaron Armstrong Skomra --- data/dth-2452.tablet | 37 data/dtk-2451.tablet | 36 data/layouts/dth-2452.svg | 144 ++ data/layouts/dtk-2451.svg | 144 ++ 4

  1   2   >