mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
added light edition of spca5xx driver and the streamin server+web-applet
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7494 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
31
package/spca5xx-view/files/servfox.init
Normal file
31
package/spca5xx-view/files/servfox.init
Normal file
@@ -0,0 +1,31 @@
|
||||
#!/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
|
||||
}
|
||||
Reference in New Issue
Block a user