diff options
author | John Crispin <john@openwrt.org> | 2016-02-12 08:30:09 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2016-02-12 08:30:09 +0000 |
commit | d086d86e6c8ded5ae8a6113c272ebf98e4652cf2 (patch) | |
tree | 1e7de2561254081b789e0a61a5555543b497a09d /package/kernel | |
parent | 7865453d2222db0f7e6ff4324d7e161730c0a9a6 (diff) | |
download | upstream-d086d86e6c8ded5ae8a6113c272ebf98e4652cf2.tar.gz upstream-d086d86e6c8ded5ae8a6113c272ebf98e4652cf2.tar.bz2 upstream-d086d86e6c8ded5ae8a6113c272ebf98e4652cf2.zip |
kernel/modules: add kmod-ip6-vti
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
SVN-Revision: 48703
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/linux/modules/netsupport.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk index cbf2ffbd35..77bd67a7c3 100644 --- a/package/kernel/linux/modules/netsupport.mk +++ b/package/kernel/linux/modules/netsupport.mk @@ -420,6 +420,22 @@ endef $(eval $(call KernelPackage,ip-vti)) +define KernelPackage/ip6-vti + SUBMENU:=$(NETWORK_SUPPORT_MENU) + TITLE:=IPv6 VTI (Virtual Tunnel Interface) + DEPENDS:=+kmod-iptunnel +kmod-ip6-tunnel +kmod-ipsec6 + KCONFIG:=CONFIG_IPV6_VTI + FILES:=$(LINUX_DIR)/net/ipv6/ip6_vti.ko + AUTOLOAD:=$(call AutoLoad,33,ip6_vti) +endef + +define KernelPackage/ip6-vti/description + Kernel modules for IPv6 VTI (Virtual Tunnel Interface) +endef + +$(eval $(call KernelPackage,ip6-vti)) + + define KernelPackage/iptunnel4 SUBMENU:=$(NETWORK_SUPPORT_MENU) TITLE:=IPv4 tunneling |