15 lines
152 B
Text
15 lines
152 B
Text
|
#!/sbin/openrc-run
|
||
|
description="Update wl1251 calibration data"
|
||
|
|
||
|
depend()
|
||
|
{
|
||
|
before modules
|
||
|
after localmount
|
||
|
}
|
||
|
|
||
|
start()
|
||
|
{
|
||
|
calibrate-wl1251
|
||
|
eend $?
|
||
|
}
|