Skip to content

Commit

Permalink
Add warning comment to deter users from changing hardcoded IP during …
Browse files Browse the repository at this point in the history
…debugging
  • Loading branch information
kueblc committed Feb 29, 2020
1 parent 5227957 commit 3cefffa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions start_flash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3cefffa

Please sign in to comment.