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.
31 lines
486 B
31 lines
486 B
#!/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
|
|
}
|
|
|