blob: 187b7ce6d23b490369c20d2be26e99dd3650b4eb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if (uname -r|grep -q 'embedix'); then
TSLIB_TSDEVICE=/dev/ts
TSLIB_TSEVENTTYPE=COLLIE
else
TSLIB_TSDEVICE=/dev/input/event0
fi
export TSLIB_TSDEVICE TSLIB_TSEVENTTYPE
|