move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the...
[openwrt/staging/dedeckeh.git] / openwrt / package / linux-atm / files / br2684.init
diff --git a/openwrt/package/linux-atm/files/br2684.init b/openwrt/package/linux-atm/files/br2684.init
deleted file mode 100644 (file)
index 242e7e5..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-[ "${INTERFACE%%[0-9]*}" = "atm" ] && {
-       case "$ACTION" in
-               register)
-                       [ "$pppoe_atm" = 1 ] && {
-                               case "$atm_encaps" in
-                                       0|vc) ENCAPS=0 ;;
-                                       1|llc) ENCAPS=1 ;;
-                                       *) ENCAPS=0 ;;
-                               esac
-                               insmod br2684 2>&- >&-
-                               br2684ctl -c0 -e${ENCAPS} -a${atm_vpi:-8}.${atm_vci:-35} &
-                       }
-               ;;
-               unregister)
-                       killall br2684ctl 2>&- >&-
-                       rmmod br2684
-               ;;
-       esac
-}