move ppp ifname fixup from pppoe.sh to ppp.sh, so that it applies to all other ppp...
[openwrt/svn-archive/archive.git] / package / ppp / files / pppoe.sh
index f263caaeefa10204f5464b587ec9c7a0cd6182d1..74f1a8579c5e8b81a520ef1f97eb0e63158f8140 100644 (file)
@@ -6,16 +6,14 @@ setup_interface_pppoe() {
        local iface="$1"
        local config="$2"
        
-       config_get device "$config" device
-
        for module in slhc ppp_generic pppox pppoe; do
                /sbin/insmod $module 2>&- >&-
        done
 
-       config_get mtu "$cfg" mtu
-       mtu=${mtu:-1480}
+       config_get mtu "$config" mtu
+       mtu=${mtu:-1492}
        start_pppd "$config" \
                plugin rp-pppoe.so \
                mtu $mtu mru $mtu \
-               "nic-$device"
+               "nic-$iface"
 }