mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
lcd display
This commit is contained in:
parent
bee3ee1450
commit
92408189e5
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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=()
|
||||||
|
|
Loading…
Add table
Reference in a new issue