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/enable-wifi.sh

20 lines
477 B
Bash

#!/bin/sh
read -r MACHINE_TYPE <"/sys/devices/soc0/machine"
if [ "reMarkable 2.0" = "${MACHINE_TYPE}" ]; then
if ! lsmod | grep -q brcmfmac; then
modprobe brcmfmac
fi
fi
# 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
sleep 1
ifconfig wlan0 up
wpa_supplicant -i wlan0 -C /var/run/wpa_supplicant -B 2>/dev/null