summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xtscal/xtscal/30xTs_Calibrate.sh
blob: b8383bf86b3f50c60fbe272153ab0b86cd90ee68 (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
	   let "n += 1"
	done
fi