chiark / gitweb /
keymap: move from udev-extras
[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     input_devs=`udevadm trigger --dry-run --verbose --subsystem-match=input --attr-match=dev`
21
22     # standard AT keyboard
23     for dev in $input_devs; do
24         info=`udevadm info --attribute-walk --path=$dev`
25         
26         if echo "$info" | grep -q 'DRIVERS=="atkbd"'; then
27             echo -n 'AT keyboard: '
28             udevadm info --query=name --path=$dev
29         fi
30     done
31
32     # modules
33     module=`udevadm trigger --verbose --dry-run --subsystem-match=input --attr-match=name='*Extra Buttons'`
34     module="$module
35 `udevadm trigger --verbose --dry-run --subsystem-match=input --attr-match=name='Sony Vaio Keys'`"
36     for m in $module; do
37         evdev=`ls -d $m/event* 2>/dev/null`
38         if [ -e "$evdev/dev" ]; then
39             echo -n 'module: '
40             udevadm info --query=name --path=$evdev
41         fi
42     done
43 }
44
45 keyboard_devices