From 9003e41b19ffaf538f4b29aacfb2cb3460afda9f Mon Sep 17 00:00:00 2001 From: Christian Rotzoll Date: Wed, 1 May 2019 12:11:59 +0200 Subject: [PATCH] #559 fixing typos and wordings --- home.admin/05hardwareTest.sh | 6 +++--- home.admin/config.scripts/blitz.stresstest.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/home.admin/05hardwareTest.sh b/home.admin/05hardwareTest.sh index 5e7902f..49e6a0c 100755 --- a/home.admin/05hardwareTest.sh +++ b/home.admin/05hardwareTest.sh @@ -34,7 +34,7 @@ showPowerImproveInfo=0 if [ ${powerWARN} -gt 0 ]; then showPowerImproveInfo=1 if [ ${powerFAIL} -gt 0 ]; then - whiptail --backtitle "RaspiBlitz v${codeVersion} - ${powerMIN}" --title " POWER SUPPLY FAIL " --msgbox " + whiptail --backtitle "RaspiBlitz v${codeVersion} - ${powerMIN}" --title " POWER SUPPLY CRITICAL " --msgbox " Your power supply was FAILING the stress test (${powerMIN}). Most reports of data loss are caused by weak power supplies. Also a lot of RaspiBlitz setups fail because of weak power supplies. @@ -112,7 +112,7 @@ showHeatImproveInfo=0 if [ ${tempWARN} -gt 0 ]; then showHeatImproveInfo=1 if [ ${tempFAIL} -gt 0 ]; then - whiptail --backtitle "RaspiBlitz v${codeVersion} - ${tempMAX}" --title " HEAT MANAGEMENT FAIL " --msgbox " + whiptail --backtitle "RaspiBlitz v${codeVersion} - ${tempMAX}" --title " HEAT MANAGEMENT CRITICAL " --msgbox " Your RaspiBlitz is getting MUCH TOO HOT (${tempMAX}). The system is getting very slow when hot - thats not a NO GO but bad. An upgrade of the Heat Management is HIGHLY RECOMMENDED. @@ -138,7 +138,7 @@ if [ ${showHeatImproveInfo} -gt 0 ]; then To improve on heat issues an upgrade of the casing is recommended. Check if you have the latest casing listed in your shopping list. The lastest casing is a big heat sink to prevent overheating. -If you have that one, check if its apllied correctly to CPU. +If you have that one, check if its applied correctly to CPU. Alternative casings should add some passive/active heat sinks. In extreme cases consider some external fan helping out. diff --git a/home.admin/config.scripts/blitz.stresstest.sh b/home.admin/config.scripts/blitz.stresstest.sh index 7deb395..1798dda 100644 --- a/home.admin/config.scripts/blitz.stresstest.sh +++ b/home.admin/config.scripts/blitz.stresstest.sh @@ -57,7 +57,7 @@ for (( n=0; n<15; ++n )); do #echo "V -> ${voltFloat}/${voltInt}" if [ ${voltInt} -lt 1200100 ] && [ ${powerWARN} -gt 1 ]; then ((powerFAIL=powerFAIL+1)) - echo "--> Power FAIL detected" >&2 + echo "--> Power CRITICAL detected" >&2 fi if [ ${voltInt} -lt 1250000 ]; then ((powerWARN=powerWARN+1)) @@ -73,7 +73,7 @@ for (( n=0; n<15; ++n )); do #echo "T -> ${tempFloat}/${tempInt}" if [ ${tempInt} -gt 6999 ]; then ((tempFAIL=tempFAIL+1)) - echo "--> Temp FAIL detected" >&2 + echo "--> Temp CRITICAL detected" >&2 fi if [ ${tempInt} -gt 6500 ]; then ((tempWARN=tempWARN+1))