1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 08:06:27 +03:00
openwrt-xburst/package/linux-atm/files/br2684.hotplug
nico 4e82307f74 rename br2684.init to br2684.hotplug, normalize Makefile.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3996 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-06-18 18:26:00 +00:00

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
}