17 lines
237 B
Text
17 lines
237 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Initialize sd8887 wlan driver"
|
||
|
|
||
|
depend()
|
||
|
{
|
||
|
need udev
|
||
|
before wlan
|
||
|
}
|
||
|
|
||
|
start()
|
||
|
{
|
||
|
ebegin "Enabling wlan driver"
|
||
|
echo 1 > /sys/devices/platform/sd8x-rfkill/pwr_ctrl
|
||
|
echo drv_mode=1 > /proc/mwlan/config
|
||
|
}
|