mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
split linux-atm, br2684ctl, add br2684 init script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1733 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
22
package/linux-atm/files/br2684.init
Normal file
22
package/linux-atm/files/br2684.init
Normal file
@@ -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} &
|
||||
}
|
||||
Reference in New Issue
Block a user