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

20 lines
166 B
Bash

#!/bin/sh /etc/rc.common
START=99
start() {
/sbin/wifi up
return 0
}
stop() {
/sbin/wifi down
return 0
}
restart() {
if stop; then
start
fi
}