X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/675a9025e3554b1cbd0f35b82eeea8babaad6f1c..2617211ff3e8567acd493eed008fda1b35d4b2e2:/package/kernel/modules/netsupport.mk diff --git a/package/kernel/modules/netsupport.mk b/package/kernel/modules/netsupport.mk index effd6930f..703cc648c 100644 --- a/package/kernel/modules/netsupport.mk +++ b/package/kernel/modules/netsupport.mk @@ -628,7 +628,7 @@ define KernelPackage/l2tp SUBMENU:=$(NETWORK_SUPPORT_MENU) DEPENDS:=@LINUX_2_6_35 TITLE:=L2TPv3 Support - KCONFIG:=CONFIG_L2TP + KCONFIG:=CONFIG_L2TP CONFIG_L2TP_DEBUGFS=n FILES:=$(LINUX_DIR)/net/l2tp/l2tp_core.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,32,l2tp_core) endef @@ -674,3 +674,25 @@ 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)) + +