You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- #!/bin/sh /etc/rc.common
- # Copyright (C) 2009-2012 OpenWrt.org
-
- START=60
-
- start() {
- /usr/bin/lcdgrilo &
- echo $! > /var/run/lcdgrilo.pid
- }
-
- stop() {
- if [ ! -f /var/run/lcdgrilo.pid ]; then
- return
- fi
- /bin/kill `cat /var/run/lcdgrilo.pid`
- }
|