Advertisement
Guest User

Untitled

a guest
Jul 1st, 2012
1,749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. #
  2. # Catch-all evdev loader for udev-based systems
  3. # We don't simply match on any device since that also adds accelerometers
  4. # and other devices that we don't really want to use. The list below
  5. # matches everything but joysticks.
  6.  
  7. Section "InputClass"
  8. Identifier "evdev pointer catchall"
  9. MatchIsPointer "on"
  10. MatchDevicePath "/dev/input/event*"
  11. Driver "evdev"
  12. EndSection
  13.  
  14. Section "InputClass"
  15. Identifier "evdev keyboard catchall"
  16. MatchIsKeyboard "on"
  17. MatchDevicePath "/dev/input/event*"
  18. Driver "evdev"
  19. EndSection
  20.  
  21. Section "InputClass"
  22. Identifier "evdev touchpad catchall"
  23. MatchIsTouchpad "on"
  24. MatchDevicePath "/dev/input/event*"
  25. Driver "evdev"
  26. EndSection
  27.  
  28. Section "InputClass"
  29. Identifier "evdev tablet catchall"
  30. MatchIsTablet "on"
  31. MatchDevicePath "/dev/input/event*"
  32. Driver "evdev"
  33. EndSection
  34.  
  35. Section "InputClass"
  36. Identifier "evdev touchscreen catchall"
  37. MatchIsTouchscreen "on"
  38. MatchDevicePath "/dev/input/event*"
  39. Driver "evdev"
  40. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement