[package] kmod-libertas needs kmod-lib80211 to load
[openwrt.git] / package / ppp / files / ppp.sh
index af01d44..8dfdab7 100644 (file)
@@ -17,6 +17,12 @@ scan_ppp() {
 
 start_pppd() {
        local cfg="$1"; shift
+       local ifname
+
+       # make sure the network state references the correct ifname
+       scan_ppp "$cfg"
+       config_get ifname "$cfg" ifname
+       set_interface_ifname "$cfg" "$ifname"
 
        # make sure only one pppd process is started
        lock "/var/lock/ppp-${cfg}"
@@ -77,7 +83,7 @@ setup_interface_ppp() {
 
        config_get device "$config" device
 
-       config_get mtu "$cfg" mtu
+       config_get mtu "$config" mtu
        mtu=${mtu:-1492}
        start_pppd "$config" \
                mtu $mtu mru $mtu \
This page took 0.026608 seconds and 4 git commands to generate.