mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-20 05:25:21 +02:00
16 lines
211 B
Bash
Executable File
16 lines
211 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
START=40
|
|
|
|
DEVICE_PW="/dev/input/event0"
|
|
DEVICE_KB="/dev/input/event1"
|
|
|
|
start() {
|
|
fnkeys $DEVICE_PW &
|
|
fnkeys $DEVICE_KB &
|
|
}
|
|
|
|
stop() {
|
|
killall fnkeys
|
|
}
|