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.
 
 
 
 
 
 

16 lines
252 B

#!/bin/sh /etc/rc.common
# Copyright (C) 2009-2012 OpenWrt.org
START=60
start() {
/usr/bin/lcdringer &
echo $! > /var/run/lcdringer.pid
}
stop() {
if [ ! -f /var/run/lcdringer.pid ]; then
return
fi
/bin/kill -9 `cat /var/run/lcdringer.pid`
}