packages/scpa5xx-view: use lowercase config option, use new service functions

git-svn-id: svn://svn.openwrt.org/openwrt/packages@29078 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2011-11-13 22:16:23 +00:00
parent 7fdcf9469a
commit 92399c4d51
3 changed files with 16 additions and 22 deletions

View File

@ -1,5 +1,5 @@
#
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=spca5xx-view
PKG_VERSION:=1
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=spca5xx-view.tar.bz2
PKG_SOURCE_URL:=http://www.acmesystems.it/download/owrt

View File

@ -1,4 +1,4 @@
config servfox
option Device '/dev/video0'
option Port '7070'
option Resolution '640x480'
option device '/dev/video0'
option port '7070'
option resolution '640x480'

View File

@ -1,31 +1,25 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006-2011 OpenWrt.org
START=90
config_cb() {
local cfg="$CONFIG_SECTION"
satrt_instance() {
local cfg="$1"
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
config_get res "$cfg" 'resolution'
config_get dev "$cfg" 'device'
config_get port "$cfg" 'port'
service_start bin/servfox ${dev:+-d $dev} ${res:+-s $res} ${port:+-w $port}
}
start() {
config_load servfox
/bin/servfox $SERVFOX_ARGS &
config_load 'servfox'
config_foreach start_instance 'servfox'
}
stop() {
killall servfox
service_stop /bin/servfox
}