diff options
Diffstat (limited to 'package/spca5xx-view/files/servfox.init')
-rw-r--r-- | package/spca5xx-view/files/servfox.init | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/spca5xx-view/files/servfox.init b/package/spca5xx-view/files/servfox.init deleted file mode 100644 index 072e595..0000000 --- a/package/spca5xx-view/files/servfox.init +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org -START=90 - -config_cb() { - local cfg="$CONFIG_SECTION" - local res - local dev - local port - local cfgt - config_get cfgt "$cfg" TYPE - - case "$cfgt" in - servfox) - config_get res $cfg Resolution - config_get dev $cfg Device - config_get port $cfg Port - - SERVFOX_ARGS="${dev:+-d $dev} ${res:+-s $res} ${port:+-w $port}" - ;; - esac -} - -start() { - config_load servfox - /bin/servfox $SERVFOX_ARGS & -} - -stop() { - killall servfox -} |