parent
3e7f6f58ec
commit
1bee1d315f
@ -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} & |
||||
} |
@ -0,0 +1,6 @@ |
||||
Package: br2684ctl |
||||
Priority: optional |
||||
Section: net |
||||
Maintainer: Felix Fietkau <openwrt@nbd.name> |
||||
Source: buildroot internal |
||||
Description: Utility for configuring the ATM RFC2684 bridging |
@ -1,6 +1,6 @@ |
||||
Package: linux-atm |
||||
Priority: optional |
||||
Section: net |
||||
Maintainer: nobody |
||||
Maintainer: Felix Fietkau <openwrt@nbd.name> |
||||
Source: buildroot internal |
||||
Description: ATM library and utilities for linux |
||||
Description: ATM library for linux |
||||
|
Loading…
Reference in new issue