Remove zd1211 now we have zd1211rw which is in the kernel source
[openwrt.git] / package / kernel / modules / network.mk
index 5fe6c0e..68bc1a2 100644 (file)
@@ -220,16 +220,19 @@ define KernelPackage/mppe
   TITLE:=Microsoft PPP compression/encryption
   DESCRIPTION:=Kernel modules for Microsoft PPP compression/encryption
   DEPENDS:=kmod-ppp
-  KCONFIG:=$(CONFIG_PPP_MPPE)
   SUBMENU:=$(NSMENU)
 endef
 
 define KernelPackage/mppe/2.4
+  KCONFIG:=$(CONFIG_PPP_MPPE_MPPC)
   FILES:=$(LINUX_DIR)/drivers/net/ppp_mppe_mppc.$(LINUX_KMOD_SUFFIX)
+  AUTOLOAD:=$(call AutoLoad,30,ppp_mppe_mppc)
 endef
 
 define KernelPackage/mppe/2.6
+  KCONFIG:=$(CONFIG_PPP_MPPE)
   FILES:=$(LINUX_DIR)/drivers/net/ppp_mppe.$(LINUX_KMOD_SUFFIX)
+  AUTOLOAD:=$(call AutoLoad,30,ppp_mppe)
 endef
 $(eval $(call KernelPackage,mppe))
 
@@ -258,6 +261,25 @@ endef
 $(eval $(call KernelPackage,ax25))
 
 
+define KernelPackage/mp-alg
+  TITLE:=ECMP caching algorithms
+  DESCRIPTION:= \
+       Kernel modules that provide several different algorithms for multipath \\\
+       route selection from the route cache. The iproute "mpath" argument allows \\\
+       specifying which algorithm to use for routes. \\\
+       quagga (at least <=0.99.6) requires a multipath patch to support this \\\
+       cached mp route feature.
+  SUBMENU:=$(NSMENU)
+  KCONFIG:= \
+       $(CONFIG_IP_ROUTE_MULTIPATH_RR) \
+       $(CONFIG_IP_ROUTE_MULTIPATH_RANDOM) \
+       $(CONFIG_IP_ROUTE_MULTIPATH_WRANDOM) \
+       $(CONFIG_IP_ROUTE_MULTIPATH_DRR)
+  FILES:=$(LINUX_DIR)/net/ipv4/multipath_*.$(LINUX_KMOD_SUFFIX)
+  AUTOLOAD:=$(call AutoLoad,35,multipath_rr multipath_random multipath_wrandom multipath_drr)
+endef
+$(eval $(call KernelPackage,mp-alg))
+
 
 
 NDMENU:=Network Devices
This page took 0.027982 seconds and 4 git commands to generate.