mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-23 07:31:54 +02:00
12 lines
122 B
Plaintext
12 lines
122 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2008 OpenWrt.org
|
||
|
START=40
|
||
|
|
||
|
start() {
|
||
|
fn-handle
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall fn-handle
|
||
|
}
|