Add w8001 support to inputattach (#645235)

This commit is contained in:
Peter Hutterer 2010-07-13 11:49:47 +10:00
parent ea3346592a
commit 7a5601ec4d
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,7 @@
Summary: A mouse server for the Linux console Summary: A mouse server for the Linux console
Name: gpm Name: gpm
Version: 1.20.6 Version: 1.20.6
Release: 22%{?dist} Release: 23%{?dist}
License: GPLv2+ License: GPLv2+
Group: System Environment/Daemons Group: System Environment/Daemons
URL: http://www.nico.schottelius.org/software/gpm/ URL: http://www.nico.schottelius.org/software/gpm/
@ -183,6 +183,9 @@ fi
%{_libdir}/libgpm.a %{_libdir}/libgpm.a
%changelog %changelog
* Mon Apr 16 2012 Peter Hutterer <peter.hutterer@redhat.com> 1.20.6-23
- Add w8001 support to inputattach (#645235)
* Tue Jan 24 2012 Nikola Pajkovsky <npajkovs@redhat.com> - 1.20.6-22 * Tue Jan 24 2012 Nikola Pajkovsky <npajkovs@redhat.com> - 1.20.6-22
- 668480 - gpm-types(7) manpage fixes - 668480 - gpm-types(7) manpage fixes

View File

@ -495,6 +495,9 @@ static struct input_types input_types[] = {
{ "--dump", "-dump", "Just enable device", { "--dump", "-dump", "Just enable device",
B2400, CS8, B2400, CS8,
0, 0x00, 0x00, 0, dump_init }, 0, 0x00, 0x00, 0, dump_init },
{ "--w8001", "-w8001", "Wacom W8001",
B38400, CS8,
SERIO_W8001, 0x00, 0x00, 0, NULL },
{ NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL } { NULL, NULL, NULL, 0, 0, 0, 0, 0, 0, NULL }
}; };