summaryrefslogtreecommitdiffstats
path: root/package/linux-atm/files
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-19 03:17:20 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-19 03:17:20 +0000
commit2af90479fbd25ca63d9697200d43ea614d657184 (patch)
tree2baf8be2ba174420052f42d69c4fb042038093b8 /package/linux-atm/files
parent9a0bc232a345ace4089dede61357c5bae9039cf8 (diff)
hotplug-based network script rewrite
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2531 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/linux-atm/files')
-rw-r--r--package/linux-atm/files/br2684.init41
1 files changed, 20 insertions, 21 deletions
diff --git a/package/linux-atm/files/br2684.init b/package/linux-atm/files/br2684.init
index 90ba36521..88f40e76b 100644
--- a/package/linux-atm/files/br2684.init
+++ b/package/linux-atm/files/br2684.init
@@ -1,22 +1,21 @@
-#!/bin/sh
-. /etc/functions.sh
-[ -e /etc/config/network ] && . /etc/config/network
-
-killall br2684ctl 2>&- >&-
-[ "$(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
- br2684ctl -c0 -e${ENCAPS} -a${VPI:-8}.${VCI:-35} &
+[ "${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
}