add a staging directory for unstripped package files, useful for debugging, will...
[openwrt.git] / package / ppp / files / pppoa.sh
index e6530b0..65c5c2d 100644 (file)
@@ -7,14 +7,22 @@ setup_interface_pppoa() {
        local config="$2"
        
        config_get device "$config" device
+       config_get vpi "$config" vpi
+       config_get vci "$config" vci
 
        for module in slhc ppp_generic pppoatm; do
                /sbin/insmod $module 2>&- >&-
        done
+       
+       config_get encaps "$config" encaps
+       case "$encaps" in
+               1|vc) ENCAPS="vc-encaps" ;;
+               *) ENCAPS="llc-encaps" ;;
+       esac
 
-       config_get mtu "$cfg" mtu
-       mtu=${mtu:-1492}
+       config_get mtu "$config" mtu
+       mtu=${mtu:-1500}
        start_pppd "$config" \
-               plugin pppoatm.so ${atm_vpi:-8}.${atm_vci:-35} \
+               plugin pppoatm.so ${vpi:-8}.${vci:-35} ${ENCAPS} \
                mtu $mtu mru $mtu
 }
This page took 0.022019 seconds and 4 git commands to generate.