summaryrefslogtreecommitdiffstats
path: root/openwrt/package/linux-atm/files/br2684.init
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-23 12:29:00 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-23 12:29:00 +0000
commit705f994e171f2fb92864179ccc1c5d3156e9b541 (patch)
tree91ee743b096fa18a110d87784fbe114d115edc7d /openwrt/package/linux-atm/files/br2684.init
parent6f58d685d7226ea8459105db15c7f54b8bc90d8f (diff)
split linux-atm, br2684ctl, add br2684 init script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1733 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/linux-atm/files/br2684.init')
-rw-r--r--openwrt/package/linux-atm/files/br2684.init22
1 files changed, 22 insertions, 0 deletions
diff --git a/openwrt/package/linux-atm/files/br2684.init b/openwrt/package/linux-atm/files/br2684.init
new file mode 100644
index 000000000..90ba36521
--- /dev/null
+++ b/openwrt/package/linux-atm/files/br2684.init
@@ -0,0 +1,22 @@
+#!/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} &
+}