We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3197799 commit ce2c349Copy full SHA for ce2c349
src/remux/launcher.cpy
@@ -728,7 +728,8 @@ class App: public IApp:
728
_ := system("systemctl suspend")
729
sleep(1)
730
731
- if system("lsmod | grep brcmfmac") == 0:
+ disable_wifi_reload := getenv("REMUX_DISABLE_WIFI_RELOAD")
732
+ if (disable_wifi_reload == NULL or strlen(disable_wifi_reload) == 0) and system("lsmod | grep brcmfmac") == 0:
733
debug "RELOADING WIFI DRIVERS"
734
_ = system("modprobe -r brcmfmac brcmutil")
735
_ = system("modprobe brcmfmac brcmutil")
0 commit comments