From 085046fa4391ff14f14f6cb50317796a97526544 Mon Sep 17 00:00:00 2001 From: goodtft Date: Wed, 8 Nov 2017 20:30:08 +0800 Subject: [PATCH] Update MPI3510-show --- MPI3510-show | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/MPI3510-show b/MPI3510-show index 00175be..83ea0fc 100644 --- a/MPI3510-show +++ b/MPI3510-show @@ -9,4 +9,29 @@ sudo cp -rf ./boot/config-35DPI.txt /boot/config.txt #sudo cp -rf ./usr/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf sudo mkdir -p /etc/X11/xorg.conf.d sudo cp -rf ./usr/99-calibration.conf-3508 /etc/X11/xorg.conf.d/99-calibration.conf +nodeplatform=`uname -n` +kernel=`uname -r` +version=`uname -v` +if test "$nodeplatform" = "raspberrypi";then +echo "this is raspberrypi kernel" +version=${version%% *} +version=${version#*#} +echo $version +if test $version -lt 970;then +echo "reboot" +else +echo "need to update touch configuration" +if test $version -ge 1023;then +echo "install xserver-xorg-input-evdev_2.10.5-1" +sudo dpkg -i -B xserver-xorg-input-evdev_2.10.5-1_armhf.deb +else +echo "install xserver-xorg-input-evdev_1%3a2.10.3-1" +sudo dpkg -i -B xserver-xorg-input-evdev_1%3a2.10.3-1_armhf.deb +fi +sudo cp -rf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/45-evdev.conf +echo "reboot" +fi +else +echo "this is not raspberrypi kernel, no need to update touch configure, reboot" +fi sudo reboot