23 lines
247 B
Text
23 lines
247 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Loading wlan module"
|
||
|
|
||
|
depend()
|
||
|
{
|
||
|
need wcnss-wlan
|
||
|
before wpa_supplicant
|
||
|
}
|
||
|
|
||
|
start()
|
||
|
{
|
||
|
ebegin "Loading wlan module"
|
||
|
modprobe wlan || return 1
|
||
|
}
|
||
|
|
||
|
stop()
|
||
|
{
|
||
|
ebegin "Unloading wlan module"
|
||
|
rmmod wlan || return 1
|
||
|
}
|
||
|
|