diff options
author | Keith Packard <keithp@keithp.com> | 2010-04-01 23:44:24 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-04-01 23:59:36 -0700 |
commit | 24952b786625fef808cb26d539dd5109d623c053 (patch) | |
tree | 9536f7c2f7498641422e32c258c8198f6c616c9c /config/10-evdev.conf | |
parent | 02328f190f893cb4ad0f3af7a2ecd39ed77ae5ad (diff) |
Install 10-evdev.conf in $(prefix)/etc/X11/xorg.conf.d under udev
udev needs some xorg.conf file to tell it to load a suitable input
driver, 10-evdev.conf is as simple as they come, mapping all evdev
devices to the evdev driver.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'config/10-evdev.conf')
-rw-r--r-- | config/10-evdev.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/10-evdev.conf b/config/10-evdev.conf new file mode 100644 index 000000000..7406f4ef2 --- /dev/null +++ b/config/10-evdev.conf @@ -0,0 +1,8 @@ +# +# Catch-all evdev loader for udev-based systems +# +Section "InputClass" + Identifier "evdev-catchall" + Driver "evdev" + MatchDevicePath "/dev/input/event*" +EndSection |