X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=package%2Fkernel%2Fmodules%2Fnetsupport.mk;h=703cc648cae7a1e39bd998c249b0ffeae136b970;hb=cf5ff978998dbbb00254789eadfbf4357fc6ef98;hp=bdd0f7516ec393d001cacabaa16135fa18fa1a1c;hpb=ae57d8838ce086c44a95b54816191ed9e92545b2;p=openwrt.git diff --git a/package/kernel/modules/netsupport.mk b/package/kernel/modules/netsupport.mk index bdd0f7516e..703cc648ca 100644 --- a/package/kernel/modules/netsupport.mk +++ b/package/kernel/modules/netsupport.mk @@ -181,6 +181,7 @@ define KernelPackage/ipsec KCONFIG:= \ CONFIG_NET_KEY \ CONFIG_XFRM_USER \ + CONFIG_INET_IPCOMP \ CONFIG_XFRM_IPCOMP FILES:=$(foreach mod,$(IPSEC-m),$(LINUX_DIR)/net/$(mod).ko) AUTOLOAD:=$(call AutoLoad,30,$(notdir $(IPSEC-m))) @@ -623,3 +624,75 @@ endef $(eval $(call KernelPackage,pktgen)) +define KernelPackage/l2tp + SUBMENU:=$(NETWORK_SUPPORT_MENU) + DEPENDS:=@LINUX_2_6_35 + TITLE:=L2TPv3 Support + KCONFIG:=CONFIG_L2TP CONFIG_L2TP_DEBUGFS=n + FILES:=$(LINUX_DIR)/net/l2tp/l2tp_core.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,32,l2tp_core) +endef + +define KernelPackage/l2tp/description + Kernel modules for L2TP V3 Support +endef + +$(eval $(call KernelPackage,l2tp)) + +define KernelPackage/l2tp-eth + SUBMENU:=$(NETWORK_SUPPORT_MENU) + TITLE:=L2TP ethernet pseudowire support for L2TPv3 + DEPENDS:=+kmod-l2tp + KCONFIG:= CONFIG_L2TP_V3=y \ + CONFIG_L2TP_ETH + FILES:= \ + $(LINUX_DIR)/net/l2tp/l2tp_netlink.$(LINUX_KMOD_SUFFIX) \ + $(LINUX_DIR)/net/l2tp/l2tp_eth.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,32,l2tp_core l2tp_netlink l2tp_eth) +endef + +define KernelPackage/l2tp-eth/description + Kernel modules for L2TP V3 pseudowire support +endef + +$(eval $(call KernelPackage,l2tp-eth)) + +define KernelPackage/l2tp-ip + SUBMENU:=$(NETWORK_SUPPORT_MENU) + TITLE:=Support for L2TP-over-IP socket family + DEPENDS:=+kmod-l2tp + KCONFIG:= CONFIG_L2TP_V3=y \ + CONFIG_L2TP_IP + FILES:=$(LINUX_DIR)/net/l2tp/l2tp_ip.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,32,l2tp_core l2tp_ip) +endef + +define KernelPackage/l2tp-ip/description + Kernel modules for L2TP-over-IP socket family +endef + +$(eval $(call KernelPackage,l2tp-ip)) + + +define KernelPackage/sctp + SUBMENU:=$(NETWORK_SUPPORT_MENU) + TITLE:=SCTP protocol kernel support + KCONFIG:=\ + CONFIG_IP_SCTP \ + CONFIG_SCTP_DBG_MSG=n \ + CONFIG_SCTP_DBG_OBJCNT=n \ + CONFIG_SCTP_HMAC_NONE=n \ + CONFIG_SCTP_HMAC_SHA1=n \ + CONFIG_SCTP_HMAC_MD5=y + FILES:= $(LINUX_DIR)/net/sctp/sctp.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:= $(call AutoLoad,32,sctp) + DEPENDS:=+kmod-libcrc32c +kmod-crypto-md5 +kmod-crypto-hmac +endef + +define KernelPackage/sctp/description + Kernel modules for SCTP protocol support +endef + +$(eval $(call KernelPackage,sctp)) + +