1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-08-22 18:54:15 +03:00
openwrt-packages/fn-handle/files/fn-handle.init

14 lines
160 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2008 OpenWrt.org
START=40
2010-03-19 15:11:56 +02:00
DEVICE_PW="/dev/input/event0"
start() {
2010-03-19 15:11:56 +02:00
fnkeys $DEVICE_PW &
}
stop() {
killall fnkeys
}