1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-28 03:45:12 +02:00
openwrt-packages/utils/lcdproc/files/lcdexec
Philip Prindeville 86985f49bb lcdproc: alternative package to drive LCD displays
As lcd4linux is all kinds of BROKEN lately, and of unknown status.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Reviewed-by: Harald Geyer <harald@ccbib.org>
2017-04-13 20:04:53 -06:00

15 lines
215 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=50
USE_PROCD=1
PROG=/usr/bin/lcdexec
config_file=/etc/lcdexec.conf
start_service() {
procd_open_instance
procd_set_param command $PROG -f -c $config_file
procd_close_instance
}