LCD-show/LCD7B-show

33 lines
973 B
Plaintext
Raw Normal View History

2016-08-15 13:57:13 +02:00
sudo cp -rf ./boot/config-7B-800x480.txt /boot/config.txt
2018-03-20 13:47:59 +01:00
if [ -b /dev/mmcblk0p7 ]; then
sudo cp ./usr/cmdline.txt-noobs /boot/cmdline.txt
else
2016-08-15 13:57:13 +02:00
sudo cp ./usr/cmdline.txt /boot/
2018-03-20 13:47:59 +01:00
fi
2016-08-15 13:57:13 +02:00
sudo cp ./usr/inittab /etc/
sudo cp -rf ./usr/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf
2018-03-28 09:05:41 +02: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"
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
fi
fi
sudo mkdir /etc/X11/xorg.conf.d
sudo cp ./usr/40-libinput.conf-HDMI7B /etc/X11/xorg.conf.d/40-libinput.conf
2016-08-15 13:57:13 +02:00
sudo reboot