2020-06-25 18:35:11 +08:00
|
|
|
#!/bin/sh /etc/rc.common
|
2020-11-17 19:18:01 +08:00
|
|
|
|
|
|
|
|
chmod 0755 /sbin/mtkwifi
|
|
|
|
|
|
2020-06-25 18:35:11 +08:00
|
|
|
START=15
|
|
|
|
|
STOP=15
|
|
|
|
|
|
|
|
|
|
USE_PROCD=1
|
|
|
|
|
|
|
|
|
|
start_service() {
|
|
|
|
|
[ -f /etc/hotplug.d/firmware/11-mtk-wifi-e2p ] && sh /etc/hotplug.d/firmware/11-mtk-wifi-e2p
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop_service() {
|
|
|
|
|
echo 'do nothing' > /dev/null
|
|
|
|
|
}
|