mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 21:44:04 +02:00
This Makefile patch adds support for the "Privacy Extensions",
"IP-in-IPv6 tunnel", "Multiple Routing Tables" and "source address based routing" in the 2.6 Kernel. Signed-off-by: "Alina Friedrichsen" <x-alina-ml@gmx.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11288 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
31d80dfaa4
commit
a2c5c63f00
@ -208,7 +208,7 @@ $(eval $(call KernelPackage,iptunnel4))
|
||||
define KernelPackage/iptunnel6
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=IPv6 tunneling
|
||||
DEPENDS:= @LINUX_2_6
|
||||
DEPENDS:= @LINUX_2_6 +kmod-ipv6
|
||||
KCONFIG:= \
|
||||
CONFIG_INET6_TUNNEL
|
||||
FILES:= $(foreach mod,tunnel6, \
|
||||
@ -227,7 +227,11 @@ $(eval $(call KernelPackage,iptunnel6))
|
||||
define KernelPackage/ipv6
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=IPv6 support
|
||||
KCONFIG:=CONFIG_IPV6
|
||||
KCONFIG:= \
|
||||
CONFIG_IPV6 \
|
||||
CONFIG_IPV6_PRIVACY=y \
|
||||
CONFIG_IPV6_MULTIPLE_TABLES=y \
|
||||
CONFIG_IPV6_SUBTREES=y
|
||||
FILES:=$(LINUX_DIR)/net/ipv6/ipv6.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,20,ipv6)
|
||||
endef
|
||||
@ -264,6 +268,24 @@ endef
|
||||
$(eval $(call KernelPackage,sit))
|
||||
|
||||
|
||||
define KernelPackage/ip6-tunnel
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=IP-in-IPv6 tunnelling
|
||||
DEPENDS:= @LINUX_2_6 +kmod-ipv6 +kmod-iptunnel6
|
||||
KCONFIG:= CONFIG_IPV6_TUNNEL
|
||||
FILES:= $(foreach mod,ip6_tunnel, \
|
||||
$(LINUX_DIR)/net/ipv6/$(mod).$(LINUX_KMOD_SUFFIX) \
|
||||
)
|
||||
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))
|
||||
|
||||
|
||||
define KernelPackage/gre
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=GRE support
|
||||
|
Loading…
Reference in New Issue
Block a user