diff options
author | HyungKyu Song <hk76.song@samsung.com> | 2013-02-15 23:59:25 +0900 |
---|---|---|
committer | HyungKyu Song <hk76.song@samsung.com> | 2013-02-15 23:59:25 +0900 |
commit | 65d7a1f63b6e2e445544b05e6ed192f149780b93 (patch) | |
tree | 14900aea5b5b83829e453eb152b5e3ab20b1daa0 /arm-e4412/xorg.conf.d/input.conf | |
parent | 3f8ac307adfa93287c096acb0bd04c63d0f960ed (diff) | |
download | xserver-xorg-misc-exynos-tizen_2.0.tar.gz xserver-xorg-misc-exynos-tizen_2.0.tar.bz2 xserver-xorg-misc-exynos-tizen_2.0.zip |
Diffstat (limited to 'arm-e4412/xorg.conf.d/input.conf')
-rwxr-xr-x | arm-e4412/xorg.conf.d/input.conf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/arm-e4412/xorg.conf.d/input.conf b/arm-e4412/xorg.conf.d/input.conf new file mode 100755 index 0000000..6e9171a --- /dev/null +++ b/arm-e4412/xorg.conf.d/input.conf @@ -0,0 +1,34 @@ +Section "ServerFlags" + Option "AllowEmptyInput" "true" + Option "AutoAddDevices" "true" + Option "AutoEnableDevices" "true" +EndSection + +Section "InputClass" + Identifier "evdev touchscreen catchall" + MatchIsTouchScreen "on" + MatchDevicePath "/dev/input/event*" + Driver "evdevmultitouch" + Option "MultiTouch" "3" +EndSection + +Section "InputClass" + Identifier "evdev pointer catchall" + MatchIsPointer "on" + MatchDevicePath "/dev/input/event*" + Driver "evdev" +EndSection + +Section "InputClass" + Identifier "evdev keyboard catchall" + MatchIsKeyboard "on" + MatchDevicePath "/dev/input/event*" + Driver "evdev" +EndSection + +Section "InputDevice" + Identifier "Gesture" + Driver "gesture" + Option "Device" "/dev/null" + Option "Activate" "1" +EndSection |