From 4e82307f74e8886bf572addc9416733d16bf6733 Mon Sep 17 00:00:00 2001 From: nico Date: Sun, 18 Jun 2006 18:26:00 +0000 Subject: 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 --- package/linux-atm/files/br2684.hotplug | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 package/linux-atm/files/br2684.hotplug (limited to 'package/linux-atm/files/br2684.hotplug') diff --git a/package/linux-atm/files/br2684.hotplug b/package/linux-atm/files/br2684.hotplug new file mode 100644 index 000000000..242e7e515 --- /dev/null +++ b/package/linux-atm/files/br2684.hotplug @@ -0,0 +1,19 @@ +[ "${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 +} -- cgit v1.2.3