diff options
| author | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:26:00 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:26:00 +0000 |
| commit | adbb4c3e335459cffc016f328fdcac44be09ce9a (patch) | |
| tree | 95d4517798527d18f9eb211c1eefa9b0a27c87c8 /openwrt/package/linux-atm/files/br2684.hotplug | |
| parent | b418646d03619ff973bff5a79b8dad5b03fe6a97 (diff) | |
| download | mtk-20170518-adbb4c3e335459cffc016f328fdcac44be09ce9a.zip mtk-20170518-adbb4c3e335459cffc016f328fdcac44be09ce9a.tar.gz mtk-20170518-adbb4c3e335459cffc016f328fdcac44be09ce9a.tar.bz2 | |
rename br2684.init to br2684.hotplug, normalize Makefile.
SVN-Revision: 3996
Diffstat (limited to 'openwrt/package/linux-atm/files/br2684.hotplug')
| -rw-r--r-- | openwrt/package/linux-atm/files/br2684.hotplug | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/openwrt/package/linux-atm/files/br2684.hotplug b/openwrt/package/linux-atm/files/br2684.hotplug new file mode 100644 index 0000000..242e7e5 --- /dev/null +++ b/openwrt/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 +} |
