tn3399_openwrt/package/spca5xx-view/files/servfox.init
2007-06-04 18:51:41 +00:00

32 lines
486 B
Bash

#!/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
}