Removed also white spaces Added Firmaware to proprietary and added directory create Modified error at libOmxVidEnc.so that was libOmxVidEnc modified error in manufacturer Full revision. Now works properly Change-Id: Ibdabb72f6f87ffc7430407e39faecb79a109ef78
16 lines
407 B
Bash
Executable File
16 lines
407 B
Bash
Executable File
#!/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 ">>> Calibrating touch screen with calibration points: " $CALIBRATION
|
|
echo $CALIBRATION > /sys/class/input/input1/calibration_points
|
|
fi
|
|
|