mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 19:03:09 +02:00
4e82307f74
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3996 3c298f89-4303-0410-b956-a3cf2f4a3e73
20 lines
375 B
Plaintext
20 lines
375 B
Plaintext
[ "${INTERFACE%%[0-9]*}" = "atm" ] && {
|
|
case "$ACTION" in
|
|
register)
|
|
[ "$pppoe_atm" = 1 ] && {
|
|
case "$atm_encaps" in
|
|
0|vc) ENCAPS=0 ;;
|
|
1|llc) ENCAPS=1 ;;
|
|
*) ENCAPS=0 ;;
|
|
esac
|
|
insmod br2684 2>&- >&-
|
|
br2684ctl -c0 -e${ENCAPS} -a${atm_vpi:-8}.${atm_vci:-35} &
|
|
}
|
|
;;
|
|
unregister)
|
|
killall br2684ctl 2>&- >&-
|
|
rmmod br2684
|
|
;;
|
|
esac
|
|
}
|