diff options
author | Steven Barth <cyrus@openwrt.org> | 2015-04-17 14:47:12 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2015-04-17 14:47:12 +0000 |
commit | 0d1b5a1fd2359949cd7b3cddce76f6f248758ed9 (patch) | |
tree | 6b86d06e139ed5ac470700f66591370e98e366a5 /package/network/utils/uqmi | |
parent | 22045c383dc32f620a5da8909a98a58320926e02 (diff) | |
download | upstream-0d1b5a1fd2359949cd7b3cddce76f6f248758ed9.tar.gz upstream-0d1b5a1fd2359949cd7b3cddce76f6f248758ed9.tar.bz2 upstream-0d1b5a1fd2359949cd7b3cddce76f6f248758ed9.zip |
network: also shorten virtual interface names of ppp and 3g/4g connections
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 45479
Diffstat (limited to 'package/network/utils/uqmi')
-rwxr-xr-x | package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 ae6aa730a6..9ae60169ea 100755 --- a/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh +++ b/package/network/utils/uqmi/files/lib/netifd/proto/qmi.sh @@ -118,14 +118,14 @@ proto_qmi_setup() { proto_send_update "$interface" json_init - json_add_string name "${interface}_dhcp" + json_add_string name "${interface}_4" json_add_string ifname "@$interface" json_add_string proto "dhcp" json_close_object ubus call network add_dynamic "$(json_dump)" json_init - json_add_string name "${interface}_dhcpv6" + json_add_string name "${interface}_6" json_add_string ifname "@$interface" json_add_string proto "dhcpv6" json_close_object |