diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-08-23 12:29:00 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-08-23 12:29:00 +0000 |
commit | 2ca1408a2cd8da17f036dc0f8f27c8a4d4ca52df (patch) | |
tree | eb1e31201b436eec5819c45f15fda5bab39d7d4b /package/linux-atm/files | |
parent | cb24bec23f08f4c72868946bbd27f4c90677f020 (diff) | |
download | upstream-2ca1408a2cd8da17f036dc0f8f27c8a4d4ca52df.tar.gz upstream-2ca1408a2cd8da17f036dc0f8f27c8a4d4ca52df.tar.bz2 upstream-2ca1408a2cd8da17f036dc0f8f27c8a4d4ca52df.zip |
split linux-atm, br2684ctl, add br2684 init script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1733 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/linux-atm/files')
-rw-r--r-- | package/linux-atm/files/br2684.init | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/linux-atm/files/br2684.init b/package/linux-atm/files/br2684.init new file mode 100644 index 0000000000..90ba36521d --- /dev/null +++ b/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} & +} |