mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
4a89c93290
* add wifi support to Rm1 * remarkable: common suspend for all models
20 lines
477 B
Bash
Executable File
20 lines
477 B
Bash
Executable File
#!/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
|