mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-28 04:26:28 +02:00
#559 fixing typos and wordings
This commit is contained in:
@@ -34,7 +34,7 @@ showPowerImproveInfo=0
|
|||||||
if [ ${powerWARN} -gt 0 ]; then
|
if [ ${powerWARN} -gt 0 ]; then
|
||||||
showPowerImproveInfo=1
|
showPowerImproveInfo=1
|
||||||
if [ ${powerFAIL} -gt 0 ]; then
|
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}).
|
Your power supply was FAILING the stress test (${powerMIN}).
|
||||||
Most reports of data loss are caused by weak power supplies.
|
Most reports of data loss are caused by weak power supplies.
|
||||||
Also a lot of RaspiBlitz setups fail because of 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
|
if [ ${tempWARN} -gt 0 ]; then
|
||||||
showHeatImproveInfo=1
|
showHeatImproveInfo=1
|
||||||
if [ ${tempFAIL} -gt 0 ]; then
|
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}).
|
Your RaspiBlitz is getting MUCH TOO HOT (${tempMAX}).
|
||||||
The system is getting very slow when hot - thats not a NO GO but bad.
|
The system is getting very slow when hot - thats not a NO GO but bad.
|
||||||
An upgrade of the Heat Management is HIGHLY RECOMMENDED.
|
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.
|
To improve on heat issues an upgrade of the casing is recommended.
|
||||||
Check if you have the latest casing listed in your shopping list.
|
Check if you have the latest casing listed in your shopping list.
|
||||||
The lastest casing is a big heat sink to prevent overheating.
|
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.
|
Alternative casings should add some passive/active heat sinks.
|
||||||
In extreme cases consider some external fan helping out.
|
In extreme cases consider some external fan helping out.
|
||||||
|
|
||||||
|
@@ -57,7 +57,7 @@ for (( n=0; n<15; ++n )); do
|
|||||||
#echo "V -> ${voltFloat}/${voltInt}"
|
#echo "V -> ${voltFloat}/${voltInt}"
|
||||||
if [ ${voltInt} -lt 1200100 ] && [ ${powerWARN} -gt 1 ]; then
|
if [ ${voltInt} -lt 1200100 ] && [ ${powerWARN} -gt 1 ]; then
|
||||||
((powerFAIL=powerFAIL+1))
|
((powerFAIL=powerFAIL+1))
|
||||||
echo "--> Power FAIL detected" >&2
|
echo "--> Power CRITICAL detected" >&2
|
||||||
fi
|
fi
|
||||||
if [ ${voltInt} -lt 1250000 ]; then
|
if [ ${voltInt} -lt 1250000 ]; then
|
||||||
((powerWARN=powerWARN+1))
|
((powerWARN=powerWARN+1))
|
||||||
@@ -73,7 +73,7 @@ for (( n=0; n<15; ++n )); do
|
|||||||
#echo "T -> ${tempFloat}/${tempInt}"
|
#echo "T -> ${tempFloat}/${tempInt}"
|
||||||
if [ ${tempInt} -gt 6999 ]; then
|
if [ ${tempInt} -gt 6999 ]; then
|
||||||
((tempFAIL=tempFAIL+1))
|
((tempFAIL=tempFAIL+1))
|
||||||
echo "--> Temp FAIL detected" >&2
|
echo "--> Temp CRITICAL detected" >&2
|
||||||
fi
|
fi
|
||||||
if [ ${tempInt} -gt 6500 ]; then
|
if [ ${tempInt} -gt 6500 ]; then
|
||||||
((tempWARN=tempWARN+1))
|
((tempWARN=tempWARN+1))
|
||||||
|
Reference in New Issue
Block a user