You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koreader/platform/remarkable/disable-wifi.sh

19 lines
532 B
Bash

#!/bin/sh
# disable wifi and remove modules
read -r MACHINE_TYPE <"/sys/devices/soc0/machine"
if [ "reMarkable 2.0" = "${MACHINE_TYPE}" ]; then
# clean stop (if it's running) of main wpa_supplicant service, used by xochitl
systemctl stop wpa_supplicant
# clean stop of non-service wpa_supplicant, if running
wpa_cli terminate 2>/dev/null
# power down wifi interface
ifconfig wlan0 down 2>/dev/null
# remove module: IMPORTANT to do this before device suspends
modprobe -r brcmfmac 2>/dev/null
fi