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.

20 lines
475 B

  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2007-2015 OpenWrt.org
  3. START=98
  4. USE_PROCD=1
  5. PROG="/usr/bin/lcd4linux"
  6. CONFIGFILE="/etc/lcd4linux.conf"
  7. start_service() {
  8. [ -f /etc/lcd4linux.conf ] || return 1
  9. procd_open_instance
  10. procd_set_param command "$PROG"
  11. procd_append_param command -F
  12. procd_append_param command -q
  13. procd_append_param command -o /tmp/lcd4linux.png
  14. procd_append_param command -f "$CONFIGFILE"
  15. procd_set_param file "$CONFIGFILE"
  16. procd_close_instance
  17. }