Add warning comment to deter users from changing hardcoded IP during debugging

pull/641/head
Colin Kuebler 2020-02-29 00:30:07 -05:00
parent 5227957197
commit 3cefffa7af
1 changed files with 6 additions and 0 deletions

View File

@ -69,6 +69,12 @@ while true; do
echo "Waiting for the device to install the intermediate firmware"
i=120
# !!! IMPORTANT !!!
# Did your device get an IP address other than 10.42.42.42?
# That is because it is not running the intermediate firmware
# The intermediate firmware will request 10.42.42.42
# Do NOT change this address!!!
# It will NOT make it install and will break this script
while ! ping -c 1 -W 1 -n 10.42.42.42 &> /dev/null; do
printf .
if (( --i == 0 )); then