From 86985f49bb756f305471410412448b1947a04c10 Mon Sep 17 00:00:00 2001 From: Philip Prindeville Date: Wed, 11 Jan 2017 13:25:40 -0700 Subject: lcdproc: alternative package to drive LCD displays As lcd4linux is all kinds of BROKEN lately, and of unknown status. Signed-off-by: Philip Prindeville Reviewed-by: Harald Geyer --- utils/lcdproc/files/LCDd | 14 ++++++++++++++ utils/lcdproc/files/lcdexec | 14 ++++++++++++++ utils/lcdproc/files/lcdproc | 14 ++++++++++++++ utils/lcdproc/files/lcdvc | 14 ++++++++++++++ 4 files changed, 56 insertions(+) create mode 100755 utils/lcdproc/files/LCDd create mode 100755 utils/lcdproc/files/lcdexec create mode 100755 utils/lcdproc/files/lcdproc create mode 100755 utils/lcdproc/files/lcdvc (limited to 'utils/lcdproc/files') diff --git a/utils/lcdproc/files/LCDd b/utils/lcdproc/files/LCDd new file mode 100755 index 000000000..595407f90 --- /dev/null +++ b/utils/lcdproc/files/LCDd @@ -0,0 +1,14 @@ +#!/bin/sh /etc/rc.common + +START=22 +USE_PROCD=1 +PROG=/usr/sbin/LCDd + +config_file=/etc/LCDd.conf + +start_service() { + procd_open_instance + procd_set_param command $PROG -f -c $config_file + procd_close_instance +} + diff --git a/utils/lcdproc/files/lcdexec b/utils/lcdproc/files/lcdexec new file mode 100755 index 000000000..e6a76f608 --- /dev/null +++ b/utils/lcdproc/files/lcdexec @@ -0,0 +1,14 @@ +#!/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 +} + diff --git a/utils/lcdproc/files/lcdproc b/utils/lcdproc/files/lcdproc new file mode 100755 index 000000000..15eb9974b --- /dev/null +++ b/utils/lcdproc/files/lcdproc @@ -0,0 +1,14 @@ +#!/bin/sh /etc/rc.common + +START=50 +USE_PROCD=1 +PROG=/usr/bin/lcdproc + +config_file=/etc/lcdproc.conf + +start_service() { + procd_open_instance + procd_set_param command $PROG -f -c $config_file + procd_close_instance +} + diff --git a/utils/lcdproc/files/lcdvc b/utils/lcdproc/files/lcdvc new file mode 100755 index 000000000..036281511 --- /dev/null +++ b/utils/lcdproc/files/lcdvc @@ -0,0 +1,14 @@ +#!/bin/sh /etc/rc.common + +START=50 +USE_PROCD=1 +PROG=/usr/bin/lcdvc + +config_file=/etc/lcdvc.conf + +start_service() { + procd_open_instance + procd_set_param command $PROG -f -c $config_file + procd_close_instance +} + -- cgit v1.2.3