mirror of https://github.com/hak5/openwrt.git
parent
07ef7f6a89
commit
2cfc87015f
|
@ -54,6 +54,13 @@ config BR2_PACKAGE_KMOD_IMQ
|
||||||
help
|
help
|
||||||
Kernel support for the Intermediate Queueing device
|
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
|
config BR2_PACKAGE_KMOD_IPV6
|
||||||
prompt "kmod-ipv6......................... IPv6 support"
|
prompt "kmod-ipv6......................... IPv6 support"
|
||||||
tristate
|
tristate
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Package: kmod-ipip
|
||||||
|
Section: sys
|
||||||
|
Priority: optional
|
||||||
|
Description: IP in IP encapsulation support
|
|
@ -15,6 +15,9 @@ $(eval $(call KMOD_template,IMQ,imq,\
|
||||||
$(MODULES_DIR)/kernel/net/ipv4/netfilter/*IMQ*.o \
|
$(MODULES_DIR)/kernel/net/ipv4/netfilter/*IMQ*.o \
|
||||||
$(MODULES_DIR)/kernel/drivers/net/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,\
|
$(eval $(call KMOD_template,IPV6,ipv6,\
|
||||||
$(MODULES_DIR)/kernel/net/ipv6/ipv6.o \
|
$(MODULES_DIR)/kernel/net/ipv6/ipv6.o \
|
||||||
|
|
|
@ -18,6 +18,10 @@ $(eval $(call KMOD_template,IMQ,imq,\
|
||||||
$(MODULES_DIR)/kernel/drivers/net/imq.ko \
|
$(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,\
|
$(eval $(call KMOD_template,IPV6,ipv6,\
|
||||||
$(MODULES_DIR)/kernel/net/ipv6/ipv6.ko \
|
$(MODULES_DIR)/kernel/net/ipv6/ipv6.ko \
|
||||||
,CONFIG_IPV6,,20,ipv6))
|
,CONFIG_IPV6,,20,ipv6))
|
||||||
|
|
Loading…
Reference in New Issue