LCD-show/MPI4008-show

32 lines
962 B
Plaintext
Raw Normal View History

2017-06-16 11:38:15 +08:00
#!/bin/bash
2016-08-15 19:57:13 +08:00
sudo cp -rf ./boot/config-397.txt /boot/config.txt
2018-03-20 20:46:43 +08:00
if [ -b /dev/mmcblk0p7 ]; then
sudo cp ./usr/cmdline.txt-noobs /boot/cmdline.txt
else
2016-08-15 19:57:13 +08:00
sudo cp ./usr/cmdline.txt /boot/
2018-03-20 20:46:43 +08:00
fi
2016-08-15 19:57:13 +08:00
sudo cp ./usr/inittab /etc/
sudo cp -rf ./usr/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf
2017-06-16 11:38:15 +08:00
sudo mkdir /etc/X11/xorg.conf.d
2016-08-15 19:57:13 +08:00
sudo cp -rf ./usr/99-calibration.conf-397 /etc/X11/xorg.conf.d/99-calibration.conf
2017-06-16 11:38:15 +08:00
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"
sudo apt-get install xserver-xorg-input-evdev
2017-06-16 11:38:15 +08:00
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
2016-08-15 19:57:13 +08:00
sudo reboot