blob: fa43617bd2f21b5672e13e9146f3b8c4424002ac [file] [log] [blame]
Patrick Williamsddad1a12017-02-23 20:36:32 -06001#!/bin/sh
2
3. /etc/formfactor/config
4
5if [ "$HAVE_TOUCHSCREEN" = "1" ]; then
6 n=1
7 while [ ! -z $TSLIB_TSDEVICE ] && [ ! -f /etc/pointercal ] && [ $n -le 5 ]
8 do
9 /usr/bin/xtscal
10 sleep 1
11 n=$(($n+1))
12 done
13fi