SHA256
3
0
forked from pool/gpm

Accepting request 762078 from home:jdelvare:branches:Base:System

- Add back support for the TAOS evaluation module to inputattach.

OBS-URL: https://build.opensuse.org/request/show/762078
OBS-URL: https://build.opensuse.org/package/show/Base:System/gpm?expand=0&rev=55
This commit is contained in:
Adam Majer 2020-01-09 17:05:01 +00:00 committed by Git OBS Bridge
parent 6a52d94d37
commit 97fc6c6657
3 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Jan 9 07:43:00 UTC 2020 - Jean Delvare <jdelvare@suse.com>
- Add back support for the TAOS evaluation module to inputattach.
-------------------------------------------------------------------
Tue Mar 27 11:41:04 CEST 2018 - kukuk@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package gpm
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#

View File

@ -376,6 +376,9 @@ struct input_types input_types[] = {
{ "--elo4002", "-elo6b", B9600, CS8 | CRTSCTS, SERIO_ELO, 1, 0, 0, NULL },
{ "--elo271-140", "-elo4b", B9600, CS8 | CRTSCTS, SERIO_ELO, 2, 0, 0, NULL },
{ "--elo261-280", "-elo3b", B9600, CS8 | CRTSCTS, SERIO_ELO, 3, 0, 0, NULL },
#ifdef SERIO_TAOSEVM
{ "--taos-evm", "-taos", B1200, CS8, SERIO_TAOSEVM, 0, 0, 0, NULL },
#endif
{ "--dump", "-dump", B2400, CS8, 0, 0, 0, 0, dump_init },
{ "", "", 0, 0 }
@ -416,6 +419,9 @@ int main(int argc, char **argv)
puts(" --ps2serkbd -ps2ser PS/2 via serial keyboard");
puts(" --twiddler -twid Handykey Twiddler chording keyboard");
puts(" --twiddler-joy -twidjoy Handykey Twiddler used as a joystick");
#ifdef SERIO_TAOSEVM
puts(" --taos-evm -taos TAOS evaluation module");
#endif
puts("");
return 1;
}