f700214ebd
Change-Id: I0d11bb7daac80b9d3cff563b465aa821a244fd90
15 lines
330 B
Bash
15 lines
330 B
Bash
#!/system/bin/sh
|
|
|
|
SETTINGSDB=/data/data/com.android.providers.settings/databases/settings.db
|
|
if [ ! -f $SETTINGSDB ] ;
|
|
then
|
|
exit
|
|
fi
|
|
|
|
CALIBRATION=`sqlite3 $SETTINGSDB "select value from system where name='calibration_points';"`
|
|
if [ ! -z $CALIBRATION ] ;
|
|
then
|
|
echo $CALIBRATION > /sys/class/input/input1/calibration_points
|
|
fi
|
|
|