1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 17:19:20 +03:00
openwrt-xburst/package/br2684ctl/files/br2684ctl
mbm b2f4342440 START/STOP values must be specified in the init script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7164 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-05-10 10:38:53 +00:00

29 lines
551 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=50
stop() {
killall br2684ctl 2>/dev/null >/dev/null
sleep 1
rmmod br2684
}
start_daemon() {
local cfg="$1"
config_get atmdev "$cfg" atmdev
config_get unit "$cfg" unit
config_get vpi "$cfg" vpi
config_get vci "$cfg" vci
config_get encaps "$cfg" encaps
case "$encaps" in
1|vc) encaps=1;;
*) encaps=0;;
esac
br2684ctl -b -c "$unit" -e "$encaps" -a "${atmdev:+$atmdev.}${vpi:-8}.${vci:-35}"
}
start() {
insmod br2684 >/dev/null 2>/dev/null
config_load network
config_foreach start_daemon atm-bridge
}