mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 20:04:04 +02:00
2af90479fb
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2531 3c298f89-4303-0410-b956-a3cf2f4a3e73
22 lines
449 B
Plaintext
22 lines
449 B
Plaintext
[ "${INTERFACE%%[0-9]*}" = "atm" ] && {
|
|
case "$ACTION" in
|
|
register)
|
|
[ "$(nvram get pppoe_atm)" = 1 ] && {
|
|
VPI=$(nvram get atm_vpi)
|
|
VCI=$(nvram get atm_vci)
|
|
case "$(nvram get atm_encaps)" in
|
|
0|vc) ENCAPS=0 ;;
|
|
1|llc) ENCAPS=1 ;;
|
|
*) ENCAPS=0 ;;
|
|
esac
|
|
insmod br2684 2>&- >&-
|
|
br2684ctl -c0 -e${ENCAPS} -a${VPI:-8}.${VCI:-35} &
|
|
}
|
|
;;
|
|
unregister)
|
|
killall br2684ctl 2>&- >&-
|
|
rmmod br2684
|
|
;;
|
|
esac
|
|
}
|