From 98b32a264e1468e10a818c07844f65e73ed2eb7f Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 19 May 2006 09:52:54 +0000 Subject: [PATCH] Add kmod-ipip, closes #539 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3799 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/target/linux/Config.in | 7 +++++++ openwrt/target/linux/control/kmod-ipip.control | 4 ++++ openwrt/target/linux/generic-2.4/modules.mk | 3 +++ openwrt/target/linux/generic-2.6/modules.mk | 4 ++++ 4 files changed, 18 insertions(+) create mode 100644 openwrt/target/linux/control/kmod-ipip.control diff --git a/openwrt/target/linux/Config.in b/openwrt/target/linux/Config.in index c6427115fc..eae8b43e9a 100644 --- a/openwrt/target/linux/Config.in +++ b/openwrt/target/linux/Config.in @@ -54,6 +54,13 @@ config BR2_PACKAGE_KMOD_IMQ help Kernel support for the Intermediate Queueing device +config BR2_PACKAGE_KMOD_IPIP + prompt "kmod-ipip......................... IP in IP encapsulation support" + tristate + default m + help + Kernel module for IP in IP encapsulation + config BR2_PACKAGE_KMOD_IPV6 prompt "kmod-ipv6......................... IPv6 support" tristate diff --git a/openwrt/target/linux/control/kmod-ipip.control b/openwrt/target/linux/control/kmod-ipip.control new file mode 100644 index 0000000000..99bf0ec34b --- /dev/null +++ b/openwrt/target/linux/control/kmod-ipip.control @@ -0,0 +1,4 @@ +Package: kmod-ipip +Section: sys +Priority: optional +Description: IP in IP encapsulation support diff --git a/openwrt/target/linux/generic-2.4/modules.mk b/openwrt/target/linux/generic-2.4/modules.mk index afb1f7c20a..540ac715cc 100644 --- a/openwrt/target/linux/generic-2.4/modules.mk +++ b/openwrt/target/linux/generic-2.4/modules.mk @@ -15,6 +15,9 @@ $(eval $(call KMOD_template,IMQ,imq,\ $(MODULES_DIR)/kernel/net/ipv4/netfilter/*IMQ*.o \ $(MODULES_DIR)/kernel/drivers/net/imq.o \ )) +$(eval $(call KMOD_template,IPIP,ipip,\ + $(MODULES_DIR)/kernel/net/ipv4/ipip.o \ +,CONFIG_NET_IPIP,,60,ipip)) $(eval $(call KMOD_template,IPV6,ipv6,\ $(MODULES_DIR)/kernel/net/ipv6/ipv6.o \ diff --git a/openwrt/target/linux/generic-2.6/modules.mk b/openwrt/target/linux/generic-2.6/modules.mk index e29360e4d3..8157a4c9a0 100644 --- a/openwrt/target/linux/generic-2.6/modules.mk +++ b/openwrt/target/linux/generic-2.6/modules.mk @@ -18,6 +18,10 @@ $(eval $(call KMOD_template,IMQ,imq,\ $(MODULES_DIR)/kernel/drivers/net/imq.ko \ )) +$(eval $(call KMOD_template,IPIP,ipip,\ + $(MODULES_DIR)/kernel/net/ipv4/ipip.o \ +,CONFIG_NET_IPIP,,60,ipip)) + $(eval $(call KMOD_template,IPV6,ipv6,\ $(MODULES_DIR)/kernel/net/ipv6/ipv6.ko \ ,CONFIG_IPV6,,20,ipv6)) -- 2.11.0