2008-12-29 01:25:58 +00:00
|
|
|
#
|
2008-04-15 01:56:41 +00:00
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2006-10-17 13:18:01 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-16 17:45:15 +00:00
|
|
|
NETWORK_SUPPORT_MENU:=Network Support
|
2006-10-17 13:18:01 +00:00
|
|
|
|
|
|
|
define KernelPackage/atm
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=ATM support
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_ATM \
|
|
|
|
CONFIG_ATM_BR2684
|
2006-10-17 13:18:01 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/net/atm/atm.ko \
|
|
|
|
$(LINUX_DIR)/net/atm/br2684.ko
|
2006-10-24 17:27:32 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,atm br2684)
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/atm/description
|
|
|
|
Kernel modules for ATM support
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,atm))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
define KernelPackage/atmtcp
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=ATM over TCP
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=kmod-atm
|
2007-07-21 00:21:34 +00:00
|
|
|
KCONFIG:=CONFIG_ATM_TCP CONFIG_ATM_DRIVERS=y
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/atm/atmtcp.ko
|
2006-10-17 13:18:01 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,atmtcp)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/atmtcp/description
|
|
|
|
Kernel module for ATM over TCP support
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,atmtcp))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-02-02 11:26:53 +00:00
|
|
|
define KernelPackage/appletalk
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=Appletalk protocol support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_ATALK \
|
|
|
|
CONFIG_DEV_APPLETALK \
|
|
|
|
CONFIG_IPDDP \
|
|
|
|
CONFIG_IPDDP_ENCAP=y \
|
|
|
|
CONFIG_IPDDP_DECAP=y
|
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/net/appletalk/appletalk.ko \
|
|
|
|
$(LINUX_DIR)/drivers/net/appletalk/ipddp.ko
|
2010-02-02 11:26:53 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,appletalk ipddp)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/appletalk/description
|
|
|
|
Kernel module for AppleTalk protocol.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,appletalk))
|
|
|
|
|
|
|
|
|
2006-11-23 10:15:19 +00:00
|
|
|
define KernelPackage/bonding
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-11-23 10:15:19 +00:00
|
|
|
TITLE:=Ethernet bonding driver
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_BONDING
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/bonding/bonding.ko
|
2006-11-23 10:15:19 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,bonding)
|
|
|
|
endef
|
2007-09-07 08:34:51 +00:00
|
|
|
|
|
|
|
define KernelPackage/bonding/description
|
|
|
|
Kernel module for NIC bonding.
|
|
|
|
endef
|
|
|
|
|
2006-11-23 10:15:19 +00:00
|
|
|
$(eval $(call KernelPackage,bonding))
|
2006-10-18 13:21:13 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
|
2007-09-17 01:34:31 +00:00
|
|
|
define KernelPackage/capi
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=CAPI (ISDN) Support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_ISDN_CAPI \
|
2008-04-11 14:21:06 +00:00
|
|
|
CONFIG_ISDN_CAPI_CAPI20 \
|
2010-03-21 14:05:59 +00:00
|
|
|
CONFIG_ISDN_CAPIFS \
|
|
|
|
CONFIG_ISDN_CAPI_CAPIFS
|
2007-09-17 01:34:31 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/isdn/capi/kernelcapi.ko \
|
|
|
|
$(LINUX_DIR)/drivers/isdn/capi/capifs.ko \
|
|
|
|
$(LINUX_DIR)/drivers/isdn/capi/capi.ko
|
2009-03-07 15:54:23 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,kernelcapi capifs capi)
|
2007-09-17 01:34:31 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/capi/description
|
|
|
|
Kernel module for basic CAPI (ISDN) support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,capi))
|
|
|
|
|
2009-01-08 23:38:05 +00:00
|
|
|
define KernelPackage/misdn
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=mISDN (ISDN) Support
|
|
|
|
KCONFIG:= \
|
2010-06-26 20:43:41 +00:00
|
|
|
CONFIG_ISDN=y \
|
2009-01-08 23:38:05 +00:00
|
|
|
CONFIG_MISDN \
|
|
|
|
CONFIG_MISDN_DSP \
|
2010-03-21 14:05:59 +00:00
|
|
|
CONFIG_MISDN_L1OIP
|
2009-01-08 23:38:05 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/isdn/mISDN/mISDN_core.ko \
|
|
|
|
$(LINUX_DIR)/drivers/isdn/mISDN/mISDN_dsp.ko \
|
|
|
|
$(LINUX_DIR)/drivers/isdn/mISDN/l1oip.ko
|
2009-01-08 23:38:05 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,mISDN_core mISDN_dsp l1oip)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/misdn/description
|
|
|
|
Modular ISDN driver support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,misdn))
|
|
|
|
|
2007-09-17 01:34:31 +00:00
|
|
|
|
2009-03-07 13:23:37 +00:00
|
|
|
define KernelPackage/isdn4linux
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=Old ISDN4Linux (deprecated)
|
|
|
|
KCONFIG:= \
|
2010-06-26 20:43:41 +00:00
|
|
|
CONFIG_ISDN=y \
|
2009-03-07 13:23:37 +00:00
|
|
|
CONFIG_ISDN_I4L \
|
|
|
|
CONFIG_ISDN_PPP=y \
|
|
|
|
CONFIG_ISDN_PPP_VJ=y \
|
|
|
|
CONFIG_ISDN_MPP=y \
|
|
|
|
CONFIG_IPPP_FILTER=y \
|
|
|
|
CONFIG_ISDN_PPP_BSDCOMP \
|
2010-03-21 14:05:59 +00:00
|
|
|
CONFIG_ISDN_CAPI_MIDDLEWARE=y \
|
|
|
|
CONFIG_ISDN_CAPI_CAPIFS_BOOL=y \
|
2009-03-07 13:23:37 +00:00
|
|
|
CONFIG_ISDN_AUDIO=y \
|
|
|
|
CONFIG_ISDN_TTY_FAX=y \
|
|
|
|
CONFIG_ISDN_X25=y \
|
2010-03-21 14:05:59 +00:00
|
|
|
CONFIG_ISDN_DIVERSION
|
2009-03-07 13:23:37 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/isdn/divert/dss1_divert.ko \
|
|
|
|
$(LINUX_DIR)/drivers/isdn/i4l/isdn.ko \
|
|
|
|
$(LINUX_DIR)/drivers/isdn/i4l/isdn_bsdcomp.ko
|
2010-06-26 20:43:41 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,isdn isdn_bsdcomp dss1_divert)
|
2009-07-12 12:09:15 +00:00
|
|
|
endef
|
|
|
|
|
2009-03-07 13:23:37 +00:00
|
|
|
define KernelPackage/isdn4linux/description
|
|
|
|
This driver allows you to use an ISDN adapter for networking
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,isdn4linux))
|
|
|
|
|
|
|
|
|
2007-10-10 13:27:06 +00:00
|
|
|
define KernelPackage/ipip
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=IP-in-IP encapsulation
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=+kmod-iptunnel4
|
2007-10-10 13:27:06 +00:00
|
|
|
KCONFIG:=CONFIG_NET_IPIP
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/ipv4/ipip.ko
|
2009-01-18 16:54:30 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,32,ipip)
|
2007-10-10 13:27:06 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ipip/description
|
|
|
|
Kernel modules for IP-in-IP encapsulation
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ipip))
|
|
|
|
|
|
|
|
|
2010-04-16 00:08:52 +00:00
|
|
|
IPSEC-m:= \
|
|
|
|
key/af_key \
|
|
|
|
xfrm/xfrm_ipcomp \
|
|
|
|
xfrm/xfrm_user \
|
|
|
|
|
2006-10-18 13:21:13 +00:00
|
|
|
define KernelPackage/ipsec
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-18 13:21:13 +00:00
|
|
|
TITLE:=IPsec related modules (IPv4 and IPv6)
|
2011-02-12 23:55:06 +00:00
|
|
|
DEPENDS:=+kmod-crypto-core +kmod-crypto-des +kmod-crypto-hmac +kmod-crypto-md5 +kmod-crypto-sha1 +kmod-crypto-deflate +kmod-crypto-cbc
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_NET_KEY \
|
2010-03-21 14:05:59 +00:00
|
|
|
CONFIG_XFRM_USER \
|
2010-07-27 21:04:49 +00:00
|
|
|
CONFIG_INET_IPCOMP \
|
2010-03-21 14:05:59 +00:00
|
|
|
CONFIG_XFRM_IPCOMP
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(foreach mod,$(IPSEC-m),$(LINUX_DIR)/net/$(mod).ko)
|
2010-04-16 00:08:52 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,$(notdir $(IPSEC-m)))
|
2006-10-18 13:21:13 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/ipsec/description
|
|
|
|
Kernel modules for IPsec support in both IPv4 and IPv6.
|
|
|
|
Includes:
|
|
|
|
- af_key
|
2010-04-16 00:08:52 +00:00
|
|
|
- xfrm_ipcomp
|
2007-09-07 08:34:51 +00:00
|
|
|
- xfrm_user
|
|
|
|
endef
|
|
|
|
|
2006-10-18 13:21:13 +00:00
|
|
|
$(eval $(call KernelPackage,ipsec))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-16 00:08:52 +00:00
|
|
|
IPSEC4-m:= \
|
|
|
|
ipv4/ah4 \
|
|
|
|
ipv4/esp4 \
|
|
|
|
ipv4/xfrm4_mode_beet \
|
|
|
|
ipv4/xfrm4_mode_transport \
|
|
|
|
ipv4/xfrm4_mode_tunnel \
|
|
|
|
ipv4/xfrm4_tunnel \
|
|
|
|
ipv4/ipcomp \
|
|
|
|
|
2006-10-18 13:21:13 +00:00
|
|
|
define KernelPackage/ipsec4
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-18 13:21:13 +00:00
|
|
|
TITLE:=IPsec related modules (IPv4)
|
2008-12-11 20:11:12 +00:00
|
|
|
DEPENDS:=kmod-ipsec +kmod-iptunnel4
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_INET_AH \
|
|
|
|
CONFIG_INET_ESP \
|
|
|
|
CONFIG_INET_IPCOMP \
|
2007-09-20 10:03:41 +00:00
|
|
|
CONFIG_INET_XFRM_MODE_BEET \
|
|
|
|
CONFIG_INET_XFRM_MODE_TRANSPORT \
|
|
|
|
CONFIG_INET_XFRM_MODE_TUNNEL \
|
2007-09-03 08:58:14 +00:00
|
|
|
CONFIG_INET_XFRM_TUNNEL
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(foreach mod,$(IPSEC4-m),$(LINUX_DIR)/net/$(mod).ko)
|
2010-04-16 00:08:52 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,32,$(notdir $(IPSEC4-m)))
|
2006-10-18 13:21:13 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/ipsec4/description
|
|
|
|
Kernel modules for IPsec support in IPv4.
|
|
|
|
Includes:
|
|
|
|
- ah4
|
|
|
|
- esp4
|
|
|
|
- ipcomp
|
2007-09-20 10:03:41 +00:00
|
|
|
- xfrm4_mode_beet
|
|
|
|
- xfrm4_mode_transport
|
|
|
|
- xfrm4_mode_tunnel
|
2007-09-07 08:34:51 +00:00
|
|
|
- xfrm4_tunnel
|
|
|
|
endef
|
|
|
|
|
2006-10-18 13:21:13 +00:00
|
|
|
$(eval $(call KernelPackage,ipsec4))
|
|
|
|
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2010-04-16 00:08:52 +00:00
|
|
|
IPSEC6-m:= \
|
|
|
|
ipv6/ah6 \
|
|
|
|
ipv6/esp6 \
|
|
|
|
ipv6/xfrm6_mode_beet \
|
|
|
|
ipv6/xfrm6_mode_transport \
|
|
|
|
ipv6/xfrm6_mode_tunnel \
|
|
|
|
ipv6/xfrm6_tunnel \
|
|
|
|
ipv6/ipcomp6 \
|
|
|
|
|
2006-10-18 13:21:13 +00:00
|
|
|
define KernelPackage/ipsec6
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-18 13:21:13 +00:00
|
|
|
TITLE:=IPsec related modules (IPv6)
|
2008-12-11 20:11:12 +00:00
|
|
|
DEPENDS:=kmod-ipsec +kmod-iptunnel6
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_INET6_AH \
|
|
|
|
CONFIG_INET6_ESP \
|
|
|
|
CONFIG_INET6_IPCOMP \
|
2007-09-20 10:03:41 +00:00
|
|
|
CONFIG_INET6_XFRM_MODE_BEET \
|
|
|
|
CONFIG_INET6_XFRM_MODE_TRANSPORT \
|
|
|
|
CONFIG_INET6_XFRM_MODE_TUNNEL \
|
|
|
|
CONFIG_INET6_XFRM_TUNNEL
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(foreach mod,$(IPSEC6-m),$(LINUX_DIR)/net/$(mod).ko)
|
2010-04-16 00:08:52 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,32,$(notdir $(IPSEC6-m)))
|
2006-10-18 13:21:13 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/ipsec6/description
|
|
|
|
Kernel modules for IPsec support in IPv6.
|
|
|
|
Includes:
|
|
|
|
- ah6
|
|
|
|
- esp6
|
|
|
|
- ipcomp6
|
2007-09-20 10:03:41 +00:00
|
|
|
- xfrm6_mode_beet
|
|
|
|
- xfrm6_mode_transport
|
|
|
|
- xfrm6_mode_tunnel
|
2007-09-07 08:34:51 +00:00
|
|
|
- xfrm6_tunnel
|
|
|
|
endef
|
|
|
|
|
2006-10-18 13:21:13 +00:00
|
|
|
$(eval $(call KernelPackage,ipsec6))
|
|
|
|
|
2009-01-18 00:18:06 +00:00
|
|
|
|
2009-01-27 09:56:05 +00:00
|
|
|
# NOTE: tunnel4 is not selectable by itself, so enable ipip for that
|
|
|
|
define KernelPackage/iptunnel4
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=IPv4 tunneling
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_NET_IPIP \
|
|
|
|
CONFIG_INET_TUNNEL
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/ipv4/tunnel4.ko
|
2009-01-27 09:56:05 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,31,tunnel4)
|
2007-09-20 10:03:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/iptunnel4/description
|
2007-10-10 13:27:06 +00:00
|
|
|
Kernel modules for IPv4 tunneling
|
2007-09-20 10:03:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,iptunnel4))
|
|
|
|
|
2009-01-27 09:56:05 +00:00
|
|
|
|
2007-09-20 10:03:41 +00:00
|
|
|
define KernelPackage/iptunnel6
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2007-10-10 13:27:06 +00:00
|
|
|
TITLE:=IPv6 tunneling
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:= +kmod-ipv6
|
2007-10-10 13:27:06 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_INET6_TUNNEL
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/ipv6/tunnel6.ko
|
2007-09-20 10:03:41 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,31,tunnel6)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/iptunnel6/description
|
2007-10-10 13:27:06 +00:00
|
|
|
Kernel modules for IPv6 tunneling
|
2007-09-20 10:03:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,iptunnel6))
|
|
|
|
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
define KernelPackage/ipv6
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=IPv6 support
|
2008-05-29 09:27:33 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_IPV6 \
|
|
|
|
CONFIG_IPV6_PRIVACY=y \
|
|
|
|
CONFIG_IPV6_MULTIPLE_TABLES=y \
|
2009-05-24 21:26:40 +00:00
|
|
|
CONFIG_IPV6_MROUTE=y \
|
2009-05-25 14:50:34 +00:00
|
|
|
CONFIG_IPV6_PIMSM_V2=n \
|
2008-05-29 09:27:33 +00:00
|
|
|
CONFIG_IPV6_SUBTREES=y
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/ipv6/ipv6.ko
|
2007-09-03 08:58:14 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,20,ipv6)
|
2007-03-01 23:39:48 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/ipv6/description
|
|
|
|
Kernel modules for IPv6 support
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,ipv6))
|
|
|
|
|
|
|
|
|
2007-10-10 13:27:06 +00:00
|
|
|
define KernelPackage/sit
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2010-06-26 20:43:41 +00:00
|
|
|
DEPENDS:=+kmod-ipv6 +kmod-iptunnel4
|
2010-11-13 13:44:52 +00:00
|
|
|
TITLE:=IPv6-in-IPv4 tunnel
|
|
|
|
KCONFIG:=CONFIG_IPV6_SIT \
|
|
|
|
CONFIG_IPV6_SIT_6RD=y
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/ipv6/sit.ko
|
2007-10-10 13:27:06 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,32,sit)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/sit/description
|
|
|
|
Kernel modules for IPv6-in-IPv4 tunnelling
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,sit))
|
|
|
|
|
|
|
|
|
2008-05-29 09:27:33 +00:00
|
|
|
define KernelPackage/ip6-tunnel
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=IP-in-IPv6 tunnelling
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:= +kmod-ipv6 +kmod-iptunnel6
|
2008-05-29 09:27:33 +00:00
|
|
|
KCONFIG:= CONFIG_IPV6_TUNNEL
|
2010-11-13 13:44:52 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/ipv6/ip6_tunnel.ko
|
2008-05-29 09:27:33 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,32,ip6_tunnel)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ip6-tunnel/description
|
|
|
|
Kernel modules for IPv6-in-IPv6 and IPv4-in-IPv6 tunnelling
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ip6-tunnel))
|
|
|
|
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
define KernelPackage/gre
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=GRE support
|
2011-03-10 15:41:04 +00:00
|
|
|
KCONFIG:=CONFIG_NET_IPGRE CONFIG_NET_IPGRE_DEMUX
|
|
|
|
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.37)),1)
|
|
|
|
FILES:=$(LINUX_DIR)/net/ipv4/ip_gre.ko $(LINUX_DIR)/net/ipv4/gre.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,39,gre ip_gre)
|
|
|
|
else
|
|
|
|
FILES:=$(LINUX_DIR)/net/ipv4/ip_gre.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,39,ip_gre)
|
|
|
|
endif
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/gre/description
|
|
|
|
Generic Routing Encapsulation support
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,gre))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/tun
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=Universal TUN/TAP driver
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_TUN
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/tun.ko
|
2006-10-17 13:18:01 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,tun)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/tun/description
|
|
|
|
Kernel support for the TUN/TAP tunneling device
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,tun))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/ppp
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=PPP modules
|
2010-06-26 20:44:28 +00:00
|
|
|
DEPENDS:=+kmod-crc-ccitt
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PPP \
|
2007-09-09 20:37:50 +00:00
|
|
|
CONFIG_PPP_ASYNC \
|
2008-11-06 13:21:43 +00:00
|
|
|
CONFIG_SLHC
|
2007-09-03 08:58:14 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/net/ppp_async.ko \
|
|
|
|
$(LINUX_DIR)/drivers/net/ppp_generic.ko \
|
|
|
|
$(LINUX_DIR)/drivers/net/slhc.ko
|
2007-08-28 11:44:15 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,30,slhc ppp_generic ppp_async)
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/ppp/description
|
|
|
|
Kernel modules for PPP support
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,ppp))
|
|
|
|
|
|
|
|
|
2007-08-22 08:31:49 +00:00
|
|
|
define KernelPackage/ppp-synctty
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2007-08-22 08:31:49 +00:00
|
|
|
TITLE:=PPP sync tty support
|
|
|
|
DEPENDS:=kmod-ppp
|
|
|
|
KCONFIG:=CONFIG_PPP_SYNC_TTY
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/ppp_synctty.ko
|
2007-08-22 08:31:49 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,ppp_synctty)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/ppp-synctty/description
|
|
|
|
Kernel modules for PPP sync tty support
|
|
|
|
endef
|
|
|
|
|
2007-08-22 08:31:49 +00:00
|
|
|
$(eval $(call KernelPackage,ppp-synctty))
|
|
|
|
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
define KernelPackage/pppoe
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=PPPoE support
|
|
|
|
DEPENDS:=kmod-ppp
|
2007-07-18 11:31:01 +00:00
|
|
|
KCONFIG:=CONFIG_PPPOE
|
2006-10-17 13:18:01 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/net/pppoe.ko \
|
|
|
|
$(LINUX_DIR)/drivers/net/pppox.ko
|
2009-09-26 21:23:53 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,pppox pppoe)
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/pppoe/description
|
|
|
|
Kernel modules for PPPoE (PPP over Ethernet) support
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,pppoe))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/pppoa
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=PPPoA support
|
2007-09-16 16:16:57 +00:00
|
|
|
DEPENDS:=kmod-ppp +kmod-atm
|
2007-09-22 23:34:39 +00:00
|
|
|
KCONFIG:=CONFIG_PPPOATM CONFIG_ATM_DRIVERS=y
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/atm/pppoatm.ko
|
2006-10-24 17:27:32 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,pppoatm)
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/pppoa/description
|
|
|
|
Kernel modules for PPPoA (PPP over ATM) support
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,pppoa))
|
|
|
|
|
2011-03-09 22:20:16 +00:00
|
|
|
|
|
|
|
define KernelPackage/pptp
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=PPtP support
|
|
|
|
DEPENDS:=kmod-ppp +kmod-gre @LINUX_2_6_37||LINUX_2_6_38
|
|
|
|
KCONFIG:=CONFIG_PPTP
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/pptp.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,41,pptp)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pptp))
|
|
|
|
|
|
|
|
|
2009-07-26 10:27:35 +00:00
|
|
|
define KernelPackage/pppol2tp
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=PPPoL2TP support
|
2011-03-19 17:42:48 +00:00
|
|
|
DEPENDS:=kmod-ppp +kmod-pppoe +LINUX_2_6_35||LINUX_2_6_36||LINUX_2_6_37||LINUX_2_6_38:kmod-l2tp
|
2009-07-26 10:27:35 +00:00
|
|
|
KCONFIG:=CONFIG_PPPOL2TP
|
2011-03-19 17:42:48 +00:00
|
|
|
ifneq ($(CONFIG_LINUX_2_6_35)$(CONFIG_LINUX_2_6_36)$(CONFIG_LINUX_2_6_37)$(CONFIG_LINUX_2_6_38),)
|
2010-11-14 20:51:30 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/l2tp/l2tp_ppp.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,40,l2tp_ppp)
|
2010-11-10 19:10:38 +00:00
|
|
|
else
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/pppol2tp.ko
|
2010-11-14 20:51:30 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,pppol2tp)
|
2010-11-10 19:10:38 +00:00
|
|
|
endif
|
2009-07-26 10:27:35 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pppol2tp/description
|
|
|
|
Kernel modules for PPPoL2TP (PPP over L2TP) support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pppol2tp))
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
|
2007-09-14 08:18:46 +00:00
|
|
|
define KernelPackage/ipoa
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2007-09-14 08:18:46 +00:00
|
|
|
TITLE:=IPoA support
|
|
|
|
DEPENDS:=kmod-atm
|
|
|
|
KCONFIG:=CONFIG_ATM_CLIP
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/atm/clip.ko
|
2007-09-14 08:18:46 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,40,clip)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ipoa/description
|
|
|
|
Kernel modules for IPoA (IP over ATM) support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ipoa))
|
|
|
|
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
define KernelPackage/mppe
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=Microsoft PPP compression/encryption
|
2011-04-07 19:06:34 +00:00
|
|
|
DEPENDS:=kmod-ppp +kmod-crypto-core +kmod-crypto-arc4 +kmod-crypto-sha1 +kmod-crypto-ecb
|
2007-09-09 20:37:50 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_PPP_MPPE_MPPC \
|
|
|
|
CONFIG_PPP_MPPE
|
2010-11-16 14:07:40 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/net/ppp_mppe.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,31,ppp_mppe)
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/mppe/description
|
|
|
|
Kernel modules for Microsoft PPP compression/encryption
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,mppe))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/sched
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-17 13:18:01 +00:00
|
|
|
TITLE:=Traffic schedulers
|
2007-09-20 09:05:08 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_NET_SCHED=y \
|
|
|
|
CONFIG_NET_SCH_DSMARK \
|
|
|
|
CONFIG_NET_SCH_ESFQ \
|
2009-07-12 00:01:12 +00:00
|
|
|
CONFIG_NET_SCH_ESFQ_NFCT=y \
|
2007-09-20 09:05:08 +00:00
|
|
|
CONFIG_NET_SCH_FIFO \
|
|
|
|
CONFIG_NET_SCH_GRED \
|
|
|
|
CONFIG_NET_SCH_HFSC \
|
|
|
|
CONFIG_NET_SCH_HTB \
|
|
|
|
CONFIG_NET_SCH_INGRESS \
|
|
|
|
CONFIG_NET_SCH_PRIO \
|
|
|
|
CONFIG_NET_SCH_RED \
|
2010-02-19 01:56:10 +00:00
|
|
|
CONFIG_NET_SCH_TBF \
|
2007-09-20 09:05:08 +00:00
|
|
|
CONFIG_NET_SCH_SFQ \
|
2009-02-22 15:15:13 +00:00
|
|
|
CONFIG_NET_SCH_TEQL \
|
|
|
|
CONFIG_NET_CLS=y \
|
2009-03-17 23:55:43 +00:00
|
|
|
CONFIG_NET_CLS_ACT=y \
|
2009-02-22 15:15:13 +00:00
|
|
|
CONFIG_NET_CLS_BASIC \
|
|
|
|
CONFIG_NET_CLS_FLOW \
|
|
|
|
CONFIG_NET_CLS_FW \
|
|
|
|
CONFIG_NET_CLS_ROUTE4 \
|
|
|
|
CONFIG_NET_CLS_TCINDEX \
|
|
|
|
CONFIG_NET_CLS_U32 \
|
|
|
|
CONFIG_NET_ACT_MIRRED \
|
2009-07-12 00:01:12 +00:00
|
|
|
CONFIG_NET_ACT_IPT \
|
|
|
|
CONFIG_NET_ACT_POLICE \
|
2011-02-21 00:03:20 +00:00
|
|
|
CONFIG_NET_ACT_CONNMARK \
|
2011-02-27 19:52:57 +00:00
|
|
|
CONFIG_NET_ACT_SKBEDIT \
|
2009-07-13 12:58:18 +00:00
|
|
|
CONFIG_NET_EMATCH=y \
|
2009-07-12 00:01:12 +00:00
|
|
|
CONFIG_NET_EMATCH_CMP \
|
|
|
|
CONFIG_NET_EMATCH_NBYTE \
|
|
|
|
CONFIG_NET_EMATCH_U32 \
|
|
|
|
CONFIG_NET_EMATCH_META \
|
|
|
|
CONFIG_NET_EMATCH_TEXT
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/sched/*.ko
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/sched/description
|
|
|
|
Kernel schedulers for IP traffic
|
|
|
|
endef
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
$(eval $(call KernelPackage,sched))
|
|
|
|
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
define KernelPackage/ax25
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2006-10-19 04:35:29 +00:00
|
|
|
TITLE:=AX25 support
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_AX25 \
|
|
|
|
CONFIG_MKISS
|
2006-10-19 04:35:29 +00:00
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/net/ax25/ax25.ko \
|
|
|
|
$(LINUX_DIR)/drivers/net/hamradio/mkiss.ko
|
2006-10-19 04:35:29 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,80,ax25 mkiss)
|
2010-04-23 04:01:03 +00:00
|
|
|
$(call AddDepends/crc16)
|
2006-10-17 13:18:01 +00:00
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/ax25/description
|
|
|
|
Kernel modules for AX25 support
|
|
|
|
endef
|
|
|
|
|
2006-10-19 04:35:29 +00:00
|
|
|
$(eval $(call KernelPackage,ax25))
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
|
2007-05-07 21:14:59 +00:00
|
|
|
define KernelPackage/mp-alg
|
2007-09-16 17:45:15 +00:00
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2007-05-07 21:14:59 +00:00
|
|
|
TITLE:=ECMP caching algorithms
|
2007-09-03 08:58:14 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_IP_ROUTE_MULTIPATH_RR \
|
|
|
|
CONFIG_IP_ROUTE_MULTIPATH_RANDOM \
|
|
|
|
CONFIG_IP_ROUTE_MULTIPATH_WRANDOM \
|
|
|
|
CONFIG_IP_ROUTE_MULTIPATH_DRR
|
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/net/ipv4/multipath_rr.ko \
|
|
|
|
$(LINUX_DIR)/net/ipv4/multipath_random.ko \
|
|
|
|
$(LINUX_DIR)/net/ipv4/multipath_wrandom.ko \
|
|
|
|
$(LINUX_DIR)/net/ipv4/multipath_drr.ko
|
2007-05-07 21:14:59 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,35,multipath_rr multipath_random multipath_wrandom multipath_drr)
|
|
|
|
endef
|
2007-08-28 11:44:15 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define KernelPackage/mp-alg/description
|
2008-12-29 01:25:58 +00:00
|
|
|
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
|
2007-09-07 08:34:51 +00:00
|
|
|
cached mp route feature.
|
|
|
|
endef
|
|
|
|
|
2007-05-07 21:14:59 +00:00
|
|
|
$(eval $(call KernelPackage,mp-alg))
|
|
|
|
|
2006-10-17 13:18:01 +00:00
|
|
|
|
2007-10-02 11:10:29 +00:00
|
|
|
define KernelPackage/pktgen
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2011-04-29 12:04:17 +00:00
|
|
|
DEPENDS:=@!TARGET_uml
|
2007-10-02 11:10:29 +00:00
|
|
|
TITLE:=Network packet generator
|
|
|
|
KCONFIG:=CONFIG_NET_PKTGEN
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/core/pktgen.ko
|
2007-10-02 11:10:29 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,99,pktgen)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pktgen/description
|
|
|
|
Kernel modules for the Network Packet Generator
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pktgen))
|
|
|
|
|
2010-08-06 00:58:49 +00:00
|
|
|
define KernelPackage/l2tp
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2011-03-19 17:42:48 +00:00
|
|
|
DEPENDS:=@LINUX_2_6_35||LINUX_2_6_36||LINUX_2_6_37||LINUX_2_6_38
|
2010-11-14 20:51:30 +00:00
|
|
|
TITLE:=Layer Two Tunneling Protocol (L2TP)
|
|
|
|
KCONFIG:=CONFIG_L2TP \
|
|
|
|
CONFIG_L2TP_V3=y \
|
|
|
|
CONFIG_L2TP_DEBUGFS=n
|
|
|
|
FILES:=$(LINUX_DIR)/net/l2tp/l2tp_core.$(LINUX_KMOD_SUFFIX) \
|
|
|
|
$(LINUX_DIR)/net/l2tp/l2tp_netlink.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,32,l2tp_core l2tp_netlink)
|
2010-08-06 00:58:49 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/l2tp/description
|
|
|
|
Kernel modules for L2TP V3 Support
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,l2tp))
|
|
|
|
|
2010-11-14 20:51:30 +00:00
|
|
|
|
2010-08-06 00:58:49 +00:00
|
|
|
define KernelPackage/l2tp-eth
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
|
TITLE:=L2TP ethernet pseudowire support for L2TPv3
|
|
|
|
DEPENDS:=+kmod-l2tp
|
2010-11-14 20:51:30 +00:00
|
|
|
KCONFIG:=CONFIG_L2TP_ETH
|
|
|
|
FILES:=$(LINUX_DIR)/net/l2tp/l2tp_eth.$(LINUX_KMOD_SUFFIX)
|
|
|
|
AUTOLOAD:=$(call AutoLoad,33,l2tp_eth)
|
2010-08-06 00:58:49 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/l2tp-eth/description
|
2010-11-14 20:51:30 +00:00
|
|
|
Kernel modules for L2TP ethernet pseudowire support for L2TPv3
|
2010-08-06 00:58:49 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,l2tp-eth))
|
|
|
|
|
|
|
|
define KernelPackage/l2tp-ip
|
|
|
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
2010-11-14 20:51:30 +00:00
|
|
|
TITLE:=L2TP IP encapsulation for L2TPv3
|
2010-08-06 00:58:49 +00:00
|
|
|
DEPENDS:=+kmod-l2tp
|
2010-11-14 20:51:30 +00:00
|
|
|
KCONFIG:=CONFIG_L2TP_IP
|
2010-08-06 00:58:49 +00:00
|
|
|
FILES:=$(LINUX_DIR)/net/l2tp/l2tp_ip.$(LINUX_KMOD_SUFFIX)
|
2010-11-14 20:51:30 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,33,l2tp_ip)
|
2010-08-06 00:58:49 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/l2tp-ip/description
|
2010-11-14 20:51:30 +00:00
|
|
|
Kernel modules for L2TP IP encapsulation for L2TPv3
|
2010-08-06 00:58:49 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,l2tp-ip))
|
|
|
|
|
|
|
|
|
2010-09-04 18:06:49 +00:00
|
|
|
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))
|
|
|
|
|
|
|
|
|