uqmi: do not wait for network connection before starting dhcp
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42723
This commit is contained in:
parent
179bfca038
commit
bf4cab37b7
1 changed files with 9 additions and 11 deletions
|
@ -25,6 +25,13 @@ qmi_disconnect() {
|
||||||
--autoconnect > /dev/null
|
--autoconnect > /dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
qmi_wds_release() {
|
||||||
|
[ -n "$cid" ] || return 0
|
||||||
|
|
||||||
|
uqmi -s -d "$device" --set-client-id wds,"$cid" --release-client-id wds
|
||||||
|
uci_revert_state network $interface cid
|
||||||
|
}
|
||||||
|
|
||||||
proto_qmi_setup() {
|
proto_qmi_setup() {
|
||||||
local interface="$1"
|
local interface="$1"
|
||||||
|
|
||||||
|
@ -101,13 +108,7 @@ proto_qmi_setup() {
|
||||||
${password:+--password $password} \
|
${password:+--password $password} \
|
||||||
--autoconnect > /dev/null
|
--autoconnect > /dev/null
|
||||||
|
|
||||||
if ! uqmi -s -d "$device" --get-data-status | grep '"connected"' > /dev/null; then
|
echo "Starting DHCP"
|
||||||
echo "Connection lost"
|
|
||||||
proto_notify_error "$interface" NOT_CONNECTED
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Connected, starting DHCP"
|
|
||||||
proto_init_update "$ifname" 1
|
proto_init_update "$ifname" 1
|
||||||
proto_send_update "$interface"
|
proto_send_update "$interface"
|
||||||
|
|
||||||
|
@ -135,10 +136,7 @@ proto_qmi_teardown() {
|
||||||
|
|
||||||
echo "Stopping network"
|
echo "Stopping network"
|
||||||
qmi_disconnect
|
qmi_disconnect
|
||||||
[ -n "$cid" ] && {
|
qmi_wds_release
|
||||||
uqmi -s -d "$device" --set-client-id wds,"$cid" --release-client-id wds
|
|
||||||
uci_revert_state network $interface cid
|
|
||||||
}
|
|
||||||
|
|
||||||
proto_init_update "*" 0
|
proto_init_update "*" 0
|
||||||
proto_send_update "$interface"
|
proto_send_update "$interface"
|
||||||
|
|
Loading…
Reference in a new issue