Files
Actions-iStoreOS-RK35XX/configfiles/opwifi
T
2024-05-21 20:02:03 +08:00

19 lines
172 B
Bash

#!/bin/sh /etc/rc.common
START=99
STOP=10
start() {
sleep 60
/sbin/wifi up
}
stop() {
/sbin/wifi down
}
restart() {
/sbin/wifi down
/sbin/wifi up
}