Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions LCD101-1024x600-show
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,23 @@ fi
if test "$1" = "0" -o "$#" = "0" -o "$2" = "0"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-101-1024x600.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-101-1024x600.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-101-1024x600.txt-90 /boot/config.txt
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-101-1024x600.txt-180 /boot/config.txt
echo "LCD configrue 180"
echo "LCD configure 180"
elif test "$1" = "270" -o "$2" = "270" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-101-1024x600-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-101-1024x600.txt-270 /boot/config.txt
echo "LCD configrue 270"
echo "LCD configure 270"
fi

#sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf
Expand Down
6 changes: 3 additions & 3 deletions LCD154-show
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ sudo cp -rf ./etc/rc.local-154 /etc/rc.local
if test "$1" = "0" -o "$#" = "0" -o "$2" = "0";then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-154 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-154.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-154 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-154.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90";then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-154.txt /boot/config.txt
Expand All @@ -80,7 +80,7 @@ elif test "$1" = "90" -o "$2" = "90";then
sudo cp ./boot/config-154.txt-90 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-154-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 90"
echo "LCD configure 90"
fi

if [ -b /dev/mmcblk0p7 ]; then
Expand Down
10 changes: 5 additions & 5 deletions LCD28-show
Original file line number Diff line number Diff line change
Expand Up @@ -56,35 +56,35 @@ if test "$1" = "0" -o "$#" = "0" -o "$2" = "0";then
if test "$j" = "retropie"; then
sudo cp ./boot/config-32.txt-retropie /boot/config.txt
fi
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-32.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90";then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32.txt-90-lite /boot/config.txt
else
sudo cp ./boot/config-32.txt-90 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32.txt-180-lite /boot/config.txt
else
sudo cp ./boot/config-32.txt-180 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 180"
echo "LCD configure 180"
elif test "$1" = "270" -o "$2" = "270"; then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32.txt-270-lite /boot/config.txt
else
sudo cp ./boot/config-32.txt-270 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 270"
echo "LCD configure 270"
fi

sudo cp ./waveshare32b-overlay.dtb /boot/overlays/waveshare32b.dtbo
Expand Down
10 changes: 5 additions & 5 deletions LCD32-show
Original file line number Diff line number Diff line change
Expand Up @@ -56,35 +56,35 @@ if test "$1" = "0" -o "$#" = "0" -o "$2" = "0";then
if test "$j" = "retropie"; then
sudo cp ./boot/config-32.txt-retropie /boot/config.txt
fi
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-32.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90";then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32.txt-90-lite /boot/config.txt
else
sudo cp ./boot/config-32.txt-90 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32.txt-180-lite /boot/config.txt
else
sudo cp ./boot/config-32.txt-180 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 180"
echo "LCD configure 180"
elif test "$1" = "270" -o "$2" = "270"; then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32.txt-270-lite /boot/config.txt
else
sudo cp ./boot/config-32.txt-270 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 270"
echo "LCD configure 270"
fi

sudo cp ./waveshare32b-overlay.dtb /boot/overlays/waveshare32b.dtbo
Expand Down
10 changes: 5 additions & 5 deletions LCD32C-show
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ if test "$1" = "0" -o "$#" = "0" -o "$2" = "0";then
if test "$j" = "retropie"; then
sudo cp ./boot/config-32c.txt-retropie /boot/config.txt
fi
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32c /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-32c.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90";then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32c.txt-90-lite /boot/config.txt
Expand All @@ -70,15 +70,15 @@ elif test "$1" = "90" -o "$2" = "90";then
sudo cp ./boot/config-32c.txt-90 /boot/config.txt
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32c-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
fi
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32c.txt-180-lite /boot/config.txt
else
sudo cp ./boot/config-32c.txt-180 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32c-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 180"
echo "LCD configure 180"
elif test "$1" = "270" -o "$2" = "270"; then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-32c.txt-270-lite /boot/config.txt
Expand All @@ -87,7 +87,7 @@ elif test "$1" = "270" -o "$2" = "270"; then
sudo cp ./boot/config-32c.txt-270 /boot/config.txt
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-32c-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
fi
echo "LCD configrue 270"
echo "LCD configure 270"
fi

sudo cp ./waveshare32c-overlay.dtb /boot/overlays/waveshare32c.dtbo
Expand Down
10 changes: 5 additions & 5 deletions LCD35-HDMI-480x320-show
Original file line number Diff line number Diff line change
Expand Up @@ -48,23 +48,23 @@ fi
if test "$1" = "0" -o "$#" = "0" -o "$2" = "0"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35H /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35H-480x320.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35H /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35H-480x320.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35H-480x320.txt-90 /boot/config.txt
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180";then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35H-480x320.txt-180 /boot/config.txt
echo "LCD configrue 180"
echo "LCD configure 180"
elif test "$1" = "270" -o "$2" = "270";then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35H-480x320.txt-270 /boot/config.txt
echo "LCD configrue 270"
echo "LCD configure 270"
fi

#sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf
Expand Down
10 changes: 5 additions & 5 deletions LCD35-HDMI-800x480-show
Original file line number Diff line number Diff line change
Expand Up @@ -44,23 +44,23 @@ sudo cp -rf ./etc/rc.local /etc/rc.local
if test "$1" = "0" -o "$#" = "0" -o "$2" = "0"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35H /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-5.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35H /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-5.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90"; then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-5.txt-90 /boot/config.txt
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-5.txt-180 /boot/config.txt
echo "LCD configrue 180"
echo "LCD configure 180"
elif test "$1" = "270" -o "$2" = "270";then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-5-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-5.txt-270 /boot/config.txt
echo "LCD configrue 270"
echo "LCD configure 270"
fi

sudo cp -rf ./usr/share/X11/xorg.conf.d/99-fbturbo.conf-HDMI /usr/share/X11/xorg.conf.d/99-fbturbo.conf
Expand Down
10 changes: 5 additions & 5 deletions LCD35-show
Original file line number Diff line number Diff line change
Expand Up @@ -57,34 +57,34 @@ if test "$1" = "0" -o "$#" = "0";then
if test "$j" = "retropie"; then
sudo cp ./boot/config-35.txt-retropie /boot/config.txt
fi
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35 /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali"; then
sudo cp ./boot/config-35.txt-90-lite /boot/config.txt
else
sudo cp ./boot/config-35.txt-90 /boot/config.txt
fi
echo "LCD configrue 90"
echo "LCD configure 90"
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
elif test "$1" = "180" -o "$2" = "180" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-35.txt-180-lite /boot/config.txt
else
sudo cp ./boot/config-35.txt-180 /boot/config.txt
fi
echo "LCD configrue 180"
echo "LCD configure 180"
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
elif test "$1" = "270" -o "$2" = "270" ; then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-35.txt-270-lite /boot/config.txt
else
sudo cp ./boot/config-35.txt-270 /boot/config.txt
fi
echo "LCD configrue 270"
echo "LCD configure 270"
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
fi

Expand Down
10 changes: 5 additions & 5 deletions LCD35B-show
Original file line number Diff line number Diff line change
Expand Up @@ -56,35 +56,35 @@ if test "$1" = "0" -o "$#" = "0" -o "$2" = "0";then
if test "$j" = "retropie"; then
sudo cp ./boot/config-35b.txt-retropie /boot/config.txt
fi
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35b.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-35b.txt-90-lite /boot/config.txt
else
sudo cp ./boot/config-35b.txt-90 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-35b.txt-180-lite /boot/config.txt
else
sudo cp ./boot/config-35b.txt-180 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 180"
echo "LCD configure 180"
elif test "$1" = "270" -o "$2" = "270"; then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali" ; then
sudo cp ./boot/config-35b.txt-270-lite /boot/config.txt
else
sudo cp ./boot/config-35b.txt-270 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 270"
echo "LCD configure 270"
fi

sudo cp ./waveshare35b-overlay.dtb /boot/overlays/waveshare35b.dtbo
Expand Down
10 changes: 5 additions & 5 deletions LCD35B-show-V2
Original file line number Diff line number Diff line change
Expand Up @@ -57,26 +57,26 @@ if test "$1" = "0" -o "$2" = "0" -o "$#" = "0" ;then
if test "$j" = "retropie"; then
sudo cp ./boot/config-35b-v2.txt-retropie /boot/config.txt
fi
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35b-v2.txt /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali"; then
sudo cp ./boot/config-35b-v2.txt-90-lite /boot/config.txt
else
sudo cp ./boot/config-35b-v2.txt-90 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali"; then
sudo cp ./boot/config-35b-v2.txt-180-lite /boot/config.txt
else
sudo cp ./boot/config-35b-v2.txt-180 /boot/config.txt
fi
echo "LCD configrue 180"
echo "LCD configure 180"
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
elif test "$1" = "270" -o "$2" = "270"; then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali"; then
Expand All @@ -85,7 +85,7 @@ elif test "$1" = "270" -o "$2" = "270"; then
sudo cp ./boot/config-35b-v2.txt-270 /boot/config.txt
fi
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35b-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
echo "LCD configrue 270"
echo "LCD configure 270"
fi

sudo cp ./waveshare35b-v2-overlay.dtb /boot/overlays/waveshare35b-v2.dtbo
Expand Down
10 changes: 5 additions & 5 deletions LCD35C-show
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ if test "$1" = "0" -o "$#" = "0" -o "$2" = "0";then
if test "$j" = "retropie"; then
sudo cp ./boot/config-35c.txt-retropie /boot/config.txt
fi
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "lite" -a "$#" = "1" ;then
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35c /usr/share/X11/xorg.conf.d/99-calibration.conf
sudo cp ./boot/config-35c.txt-lite /boot/config.txt
echo "LCD configrue 0"
echo "LCD configure 0"
elif test "$1" = "90" -o "$2" = "90" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali"; then
sudo cp ./boot/config-35c.txt-90-lite /boot/config.txt
Expand All @@ -72,14 +72,14 @@ elif test "$1" = "90" -o "$2" = "90" ;then
sudo cp ./boot/config-35c.txt-90 /boot/config.txt
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35c-90 /usr/share/X11/xorg.conf.d/99-calibration.conf
fi
echo "LCD configrue 90"
echo "LCD configure 90"
elif test "$1" = "180" -o "$2" = "180" ;then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali"; then
sudo cp ./boot/config-35c.txt-180-lite /boot/config.txt
else
sudo cp ./boot/config-35c.txt-180 /boot/config.txt
fi
echo "LCD configrue 180"
echo "LCD configure 180"
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35c-180 /usr/share/X11/xorg.conf.d/99-calibration.conf
elif test "$1" = "270" -o "$2" = "270" ; then
if test "$1" = "lite" -o "$2" = "lite" -o "$j" = "kali"; then
Expand All @@ -89,7 +89,7 @@ elif test "$1" = "270" -o "$2" = "270" ; then
sudo cp ./boot/config-35c.txt-270 /boot/config.txt
sudo cp -rf ./etc/X11/xorg.conf.d/99-calibration.conf-35c-270 /usr/share/X11/xorg.conf.d/99-calibration.conf
fi
echo "LCD configrue 270"
echo "LCD configure 270"

fi

Expand Down
Loading