lcd display

This commit is contained in:
rootzoll 2021-06-19 04:05:26 +02:00
parent bee3ee1450
commit 92408189e5
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ while :
# get config info if already available (with state value) # get config info if already available (with state value)
source ${infoFile} source ${infoFile}
if [ "${setupPhase}" != "done" ] && [ "${state}" != "copytarget" ]; then if [ "${setupPhase}" != "done" ] || [ "${state}" == "copytarget" ]; then
# show status info during boot & setup & repair on LCD # show status info during boot & setup & repair on LCD
/home/admin/setup.scripts/eventInfoWait.sh "${state}" "${message}" lcd /home/admin/setup.scripts/eventInfoWait.sh "${state}" "${message}" lcd

View file

@ -26,7 +26,7 @@ fi
############################################ ############################################
# BLOCKCHAIN INFO & OPTIONS # BLOCKCHAIN INFO & OPTIONS
if [ ${syncProgress} -lt 99 ] && [ "${network}" == "bitcoin" ]; then if [ "${syncProgress}" != "" ] && [ "${network}" == "bitcoin" ] && [ ${syncProgress} -lt 75 ]; then
# offer choice to copy blockchain over LAN # offer choice to copy blockchain over LAN
OPTIONS=() OPTIONS=()