change treshhold to 5

This commit is contained in:
dadav
2020-04-18 18:19:16 +02:00
parent 1013e7dc19
commit 56c291d302
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ blink_led() {
# check if brcm is stuck
check_brcm() {
if [[ "$(journalctl -n10 -k | grep -c 'brcmf_cfg80211_nexmon_set_channel.*Set Channel failed')" -ge 3 ]]; then
if [[ "$(journalctl -n10 -k | grep -c 'brcmf_cfg80211_nexmon_set_channel.*Set Channel failed')" -ge 5 ]]; then
return 1
fi
return 0