2021-01-19 20:09:17 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-01-15 03:38:30 +00:00
|
|
|
# stop wpa_supplicant service cleanly, used by xochitl
|
|
|
|
if systemctl is-active -q wpa_supplicant; then
|
|
|
|
systemctl stop wpa_supplicant
|
|
|
|
fi
|
2021-01-19 20:09:17 +00:00
|
|
|
|
2024-01-15 03:38:30 +00:00
|
|
|
# stop non-service wpa_supplicant cleanly
|
|
|
|
if pidof wpa_supplicant; then
|
|
|
|
wpa_cli terminate
|
|
|
|
fi
|
|
|
|
|
|
|
|
# stop dhcpcd if not enabled
|
|
|
|
if ! systemctl is-enabled -q dhcpcd; then
|
|
|
|
systemctl stop dhcpcd
|
|
|
|
fi
|
2021-01-19 20:09:17 +00:00
|
|
|
|
2021-02-02 02:19:37 +00:00
|
|
|
# power down wifi interface
|
2024-01-15 03:38:30 +00:00
|
|
|
ifconfig wlan0 down
|
2021-01-19 20:09:17 +00:00
|
|
|
|
2024-01-15 03:38:30 +00:00
|
|
|
# unload brcmfmac kernel module
|
|
|
|
if grep -q "^brcmfmac " "/proc/modules"; then
|
|
|
|
modprobe -r brcmfmac
|
|
|
|
fi
|