aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh
blob: fa43617bd2f21b5672e13e9146f3b8c4424002ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

. /etc/formfactor/config

if [ "$HAVE_TOUCHSCREEN" = "1" ]; then
	n=1
	while [ ! -z $TSLIB_TSDEVICE ] && [ ! -f /etc/pointercal ] && [ $n -le 5 ]
	do
	   /usr/bin/xtscal
	   sleep 1
	   n=$(($n+1))
	done
fi