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/sony-prstux/set-wifi.sh

14 lines
295 B
Bash

#!/bin/bash
set -x
if [ "$1" = "on" ]; then
wmiconfig -i wlan0 --wlan enable
wmiconfig -i wlan0 --setreassocmode 0
wmiconfig -i wlan0 --power maxperf
echo "Wi-Fi Enabled"
else
wmiconfig -i wlan0 --abortscan
wmiconfig -i wlan0 --wlan disable
echo "Wi-Fi Disabled"
fi