diff options
author | Zack Rusin <zackr@vmware.com> | 2012-03-07 23:22:35 -0500 |
---|---|---|
committer | Zack Rusin <zackr@vmware.com> | 2012-03-08 09:46:31 -0500 |
commit | 189dc266a66485d48303acbc1a4fbe4642c75e9f (patch) | |
tree | 60c6297ea08c1aec893f2de8d0995d8291219450 /tools | |
parent | 3960dd29b4e839d224b9da4e28ab4302832e906f (diff) |
Adjust the kernel name in the udev file.
Some distros (most notable OpenSuSE) are unable to match on the
'event' devices, since we should be using 'mouse' kernel anyway
(because that's what the 'udevadm info' reports) switch to it in the
rules file.
Signed-off-by: Zack Rusin <zackr@vmware.com>
Reviewed-by: Jakob Bornecrantz <jakob@vmware.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/69-xorg-vmmouse.rules.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/69-xorg-vmmouse.rules.in b/tools/69-xorg-vmmouse.rules.in index 602afb6..9af3938 100644 --- a/tools/69-xorg-vmmouse.rules.in +++ b/tools/69-xorg-vmmouse.rules.in @@ -1 +1 @@ -ACTION=="add|change", ENV{ID_INPUT_MOUSE}=="?*", ATTRS{description}=="i8042 AUX port", KERNEL=="event[0-9]*", PROGRAM="__BIN_PREFIX__/vmmouse_detect", ENV{ID_INPUT.tags}="vmmouse" +ACTION=="add|change", ENV{ID_INPUT_MOUSE}=="?*", ATTRS{description}=="i8042 AUX port", KERNEL=="mouse[0-9]*", PROGRAM="__BIN_PREFIX__/vmmouse_detect", ENV{ID_INPUT.tags}="vmmouse" |