xserver-kdrive-common: run calibration only on machines with touchscreen

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1904 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Marcin Juszkiewicz
2007-06-11 07:37:03 +00:00
parent 750675a8ca
commit d5747c5ea1
2 changed files with 10 additions and 6 deletions

View File

@@ -1,6 +1,10 @@
#!/bin/sh
while [ ! -z $TSLIB_TSDEVICE ] && [ ! -f /etc/pointercal ]
do
/usr/bin/xtscal
done
. /etc/formfactor/config
if [ "$HAVE_TOUCHSCREEN" = "1" ]; then
while [ ! -z $TSLIB_TSDEVICE ] && [ ! -f /etc/pointercal ]
do
/usr/bin/xtscal
done
fi

View File

@@ -2,7 +2,7 @@ DESCRIPTION = "Common X11 scripts"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS_${PN} = "xmodmap libxrandr xdpyinfo xtscal xinit formfactor"
PR = "r17"
PR = "r18"
SRC_URI = "file://etc"
S = ${WORKDIR}
@@ -15,4 +15,4 @@ do_install() {
rm -fR ${D}/etc/*/.svn
rm -fR ${D}/etc/*/*/.svn
chmod -R 755 ${D}/etc
}
}