--- inputattach.c | 6 ++++++ 1 file changed, 6 insertions(+) --- utils.orig/inputattach.c 2007-06-22 10:25:32.000000000 +0200 +++ utils/inputattach.c 2008-05-11 15:41:57.000000000 +0200 @@ -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 } @@ -421,6 +424,9 @@ int main(int argc, char **argv) puts(" --elo4002 -elo6b Elo touchscreen (legacy 6-byte protocol)"); puts(" --elo271-140 -elo4b Elo touchscreen (legacy 4-byte protocol)"); puts(" --elo261-280 -elo3b Elo touchscreen (legacy 3-byte protocol)"); +#ifdef SERIO_TAOSEVM + puts(" --taos-evm -taos TAOS evaluation module"); +#endif puts(""); return 1; }