mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:50:18 +02:00
09a26b3e31
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7494 3c298f89-4303-0410-b956-a3cf2f4a3e73
32 lines
486 B
Bash
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
|
|
}
|