diff options
author | Carsten Haitzler <raster@openmoko.org> | 2009-04-14 20:31:03 +1000 |
---|---|---|
committer | Carsten Haitzler <raster@openmoko.org> | 2009-04-14 23:25:16 +1000 |
commit | f5a114a9eec48ac1994c97d8100ba14aabcc70a8 (patch) | |
tree | 84185d40582fd4abf5a3fd4aae0821f3ad7982be /recipes/xserver-kdrive-common | |
parent | e57036c6b46be99181fb7011d5c6cf667bb7041c (diff) |
xserver-kdrive-common: fix tscalibrate script to not run if ts dev not exist
Diffstat (limited to 'recipes/xserver-kdrive-common')
-rw-r--r-- | recipes/xserver-kdrive-common/xserver-kdrive-common/30xTs_Calibrate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/xserver-kdrive-common/xserver-kdrive-common/30xTs_Calibrate b/recipes/xserver-kdrive-common/xserver-kdrive-common/30xTs_Calibrate index 8e6a8b22cb..70786908b6 100644 --- a/recipes/xserver-kdrive-common/xserver-kdrive-common/30xTs_Calibrate +++ b/recipes/xserver-kdrive-common/xserver-kdrive-common/30xTs_Calibrate @@ -1,6 +1,6 @@ #!/bin/sh -while [ ! -z $TSLIB_TSDEVICE ] && [ ! -f /etc/pointercal ] +while [ ! -z $TSLIB_TSDEVICE ] && [ -f $TSLIB_TSDEVICE] && [ ! -f /etc/pointercal ] do /usr/bin/xtscal done |