packages/lcd4linux: split into 2 -custom & -full, various fixes:
[openwrt/svn-archive/archive.git] / utils / lcd4linux / files / lcd4linux.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2007-2011 OpenWrt.org
3
4 START=98
5
6 SERVICE_USE_PID=1
7
8 start() {
9 service_start /usr/bin/lcd4linux -o /tmp/lcd4linux.png -q
10 }
11
12 stop() {
13 service_stop /usr/bin/lcd4linux
14 }
15