chiark / gitweb /
findkeyboards: Consistently use spaces instead of tabs
[elogind.git] / extras / keymap / findkeyboards
1 #!/bin/sh -e
2 # Find "real" keyboard devices and print their device path.
3 # Author: Martin Pitt <martin.pitt@ubuntu.com>
4 #
5 # Copyright (C) 2009, Canonical Ltd.
6 #
7 # This program is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
16
17
18 # print a list of input devices which are keyboard-like
19 keyboard_devices() {
20     # standard AT keyboard
21     for dev in `udevadm trigger --dry-run --verbose --property-match=ID_INPUT_KEYBOARD=1`; do
22         walk=`udevadm info --attribute-walk --path=$dev`
23         env=`udevadm info --query=env --path=$dev`
24         # filter out non-event devices, such as the parent input devices which
25         # have no devnode
26         if ! echo "$env" | grep -q '^DEVNAME='; then
27             continue
28         fi
29         if echo "$walk" | grep -q 'DRIVERS=="atkbd"'; then
30             echo -n 'AT keyboard: '
31         elif echo "$env" | grep -q '^ID_USB_DRIVER=usbhid'; then
32             echo -n 'USB keyboard: '
33         else
34             echo -n 'Unknown type: '
35         fi
36         udevadm info --query=name --path=$dev
37     done
38
39     # modules
40     module=`udevadm trigger --verbose --dry-run --subsystem-match=input --attr-match=name='*Extra Buttons'`
41     module="$module
42 `udevadm trigger --verbose --dry-run --subsystem-match=input --attr-match=name='*extra buttons'`"
43     module="$module
44 `udevadm trigger --verbose --dry-run --subsystem-match=input --attr-match=name='Sony Vaio Keys'`"
45     for m in $module; do
46         evdev=`ls -d $m/event* 2>/dev/null`
47         if [ -e "$evdev/dev" ]; then
48             echo -n 'module: '
49             udevadm info --query=name --path=$evdev
50         fi
51     done
52 }
53
54 keyboard_devices