rpi-config: fix invalid shell variable name

Commit da32aac introduced an invalid shell variable name in do_deploy():
according to bash manpage variable names cannot contain dots. Replace
dot with underscore to fix it.

Signed-off-by: Andrea Galbusera <gizero@gmail.com>
This commit is contained in:
Andrea Galbusera 2017-04-04 19:35:50 +02:00 committed by Andrei Gherzan
parent da32aac453
commit d0c152d7f8
No known key found for this signature in database
GPG Key ID: 26BAA8DAF6B114F6
2 changed files with 2 additions and 2 deletions

2
README
View File

@ -247,7 +247,7 @@ List of currently supported models:
If you would like to use the Waveshare "C" 1024×600, 7 inch Capacitive Touch
Screen LCD, HDMI interface (http://www.waveshare.com/7inch-HDMI-LCD-C.htm)
Rev 2.1, please set the following in your local.conf
WAVESHARE_1024X600_C_2.1 = "1"
WAVESHARE_1024X600_C_2_1 = "1"
3.P. Enable UART
===============

View File

@ -112,7 +112,7 @@ do_deploy() {
fi
# Waveshare "C" 1024x600 7" Rev2.1 IPS capacitive touch (http://www.waveshare.com/7inch-HDMI-LCD-C.htm)
if [ "${WAVESHARE_1024X600_C_2.1}" = "1" ]; then
if [ "${WAVESHARE_1024X600_C_2_1}" = "1" ]; then
echo "# Waveshare \"C\" 1024x600 7\" Rev2.1 IPS capacitive touch screen" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
echo "max_usb_current=1" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
echo "hdmi_group=2" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt