acdc41b6f6
* move all original package customization to a -custom pakage, DEVEL only * enable all (not broken) drivers & plugins in a -full package (closes: #7958, #9096) * ship upstream config file, defaulting to the "Image" driver * use new service functions in initscript git-svn-id: svn://svn.openwrt.org/openwrt/packages@28951 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
210 B
Bash
16 lines
210 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2007-2011 OpenWrt.org
|
|
|
|
START=98
|
|
|
|
SERVICE_USE_PID=1
|
|
|
|
start() {
|
|
service_start /usr/bin/lcd4linux -o /tmp/lcd4linux.png -q
|
|
}
|
|
|
|
stop() {
|
|
service_stop /usr/bin/lcd4linux
|
|
}
|
|
|