1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-11 23:50:14 +02:00

[package] comgt:

- localize variables
	- bring scripts in sync with updated ppp logic
	- bump package revision


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21285 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2010-05-01 18:01:36 +00:00
parent 19172c5d00
commit 35989ffd58
2 changed files with 15 additions and 5 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=comgt PKG_NAME:=comgt
PKG_VERSION:=0.32 PKG_VERSION:=0.32
PKG_RELEASE:=1 PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tgz PKG_SOURCE:=$(PKG_NAME).$(PKG_VERSION).tgz
PKG_SOURCE_URL:=@SF/comgt PKG_SOURCE_URL:=@SF/comgt

View File

@ -9,8 +9,6 @@ set_3g_led() {
scan_3g() { scan_3g() {
local device local device
scan_ppp "$@"
config_get device "$1" device config_get device "$1" device
# try to figure out the device if it's invalid # try to figure out the device if it's invalid
@ -24,6 +22,7 @@ scan_3g() {
} }
# enable 3G with the 3G button by default # enable 3G with the 3G button by default
local button
config_get button "$1" button config_get button "$1" button
[ -z "$button" ] && { [ -z "$button" ] && {
config_set "$1" button 1 config_set "$1" button 1
@ -31,6 +30,7 @@ scan_3g() {
} }
stop_interface_3g() { stop_interface_3g() {
stop_interface_ppp "$1"
set_3g_led 0 0 0 set_3g_led 0 0 0
killall gcom >/dev/null 2>/dev/null killall gcom >/dev/null 2>/dev/null
} }
@ -40,7 +40,10 @@ setup_interface_3g() {
local config="$2" local config="$2"
local chat="/etc/chatscripts/3g.chat" local chat="/etc/chatscripts/3g.chat"
local device
config_get device "$config" device config_get device "$config" device
local maxwait
config_get maxwait "$config" maxwait config_get maxwait "$config" maxwait
maxwait=${maxwait:-20} maxwait=${maxwait:-20}
while [ ! -e "$device" -a $maxwait -gt 0 ];do # wait for driver loading to catch up while [ ! -e "$device" -a $maxwait -gt 0 ];do # wait for driver loading to catch up
@ -52,9 +55,16 @@ setup_interface_3g() {
/sbin/insmod $module 2>&- >&- /sbin/insmod $module 2>&- >&-
done done
local apn
config_get apn "$config" apn config_get apn "$config" apn
local service
config_get service "$config" service config_get service "$config" service
local pincode
config_get pincode "$config" pincode config_get pincode "$config" pincode
local mtu
config_get mtu "$config" mtu config_get mtu "$config" mtu
set_3g_led 1 0 1 set_3g_led 1 0 1