From: David Bauer Date: Wed, 20 May 2026 14:59:36 +0000 (+0200) Subject: uqmi: use configured profile-id if available X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=cb4e665da01cd075c42e2e91148be69faac8500f;p=thirdparty%2Fopenwrt.git uqmi: use configured profile-id if available Use a user-supplied profile-id when configuring the APN and PDP type. Fall back to id "1" in case no profile-id is set by the user. Link: https://github.com/openwrt/openwrt/issues/21617 Suggested-by: S. Hoot Signed-off-by: David Bauer --- diff --git a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh index 8f45e25ee49..41a3a3e9a30 100755 --- a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh +++ b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh @@ -39,7 +39,7 @@ proto_qmi_setup() { local connstat dataformat mcc mnc plmn_mode local cid_4 cid_6 pdh_4 pdh_6 local dns1_6 dns2_6 gateway_6 ip_6 ip_prefix_length - local profile_pdptype + local profile_pdptype profile_id local delegate ip4table ip6table mtu sourcefilter $PROTO_DEFAULT_OPTIONS json_get_vars delegate ip4table ip6table mtu sourcefilter $PROTO_DEFAULT_OPTIONS @@ -331,12 +331,13 @@ proto_qmi_setup() { [ "$pdptype" = "ip" -o "$pdptype" = "ipv6" -o "$pdptype" = "ipv4v6" ] || pdptype="ip" - # Configure PDP type and APN for profile 1. + # Configure PDP type and APN. # In case GGSN rejects IPv4v6 PDP, modem might not be able to # establish a non-LTE data session. profile_pdptype="$pdptype" + profile_id="${profile:-1}" [ "$profile_pdptype" = "ip" ] && profile_pdptype="ipv4" - uqmi -s -d "$device" -t 1000 --modify-profile "3gpp,1" --apn "$apn" --pdp-type "$profile_pdptype" > /dev/null 2>&1 + uqmi -s -d "$device" -t 1000 --modify-profile "3gpp,$profile_id" --apn "$apn" --pdp-type "$profile_pdptype" > /dev/null 2>&1 if [ "$pdptype" = "ip" ]; then [ -z "$autoconnect" ] && autoconnect=1