mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 05:02:58 +02:00
[package] kernel: add modules for nfnetlink based packet logging & queuing and conntracking
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14308 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7f37b27d4b
commit
132e6a5026
@ -399,3 +399,68 @@ define KernelPackage/ebtables/description
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call KernelPackage,ebtables))
|
$(eval $(call KernelPackage,ebtables))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/nfnetlink
|
||||||
|
SUBMENU:=$(NF_MENU)
|
||||||
|
TITLE:=Netlink-based userspace interface
|
||||||
|
DEPENDS:=@LINUX_2_6 +kmod-ipt-core
|
||||||
|
FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink.$(LINUX_KMOD_SUFFIX)
|
||||||
|
KCONFIG:=CONFIG_NETFILTER_NETLINK
|
||||||
|
AUTOLOAD:=$(call AutoLoad,48,nfnetlink)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/nfnetlink/description
|
||||||
|
Kernel modules support for a netlink-based userspace interface
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,nfnetlink))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/nfnetlink-log
|
||||||
|
SUBMENU:=$(NF_MENU)
|
||||||
|
TITLE:=Netfilter LOG over NFNETLINK interface
|
||||||
|
DEPENDS:=@LINUX_2_6 +kmod-nfnetlink
|
||||||
|
FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink_log.$(LINUX_KMOD_SUFFIX)
|
||||||
|
KCONFIG:=CONFIG_NETFILTER_NETLINK_LOG
|
||||||
|
AUTOLOAD:=$(call AutoLoad,48,nfnetlink_log)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/nfnetlink-log/description
|
||||||
|
Kernel modules support for logging packets via NFNETLINK
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,nfnetlink-log))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/nfnetlink-queue
|
||||||
|
SUBMENU:=$(NF_MENU)
|
||||||
|
TITLE:=Netfilter QUEUE over NFNETLINK interface
|
||||||
|
DEPENDS:=@LINUX_2_6 +kmod-nfnetlink
|
||||||
|
FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink_queue.$(LINUX_KMOD_SUFFIX)
|
||||||
|
KCONFIG:=CONFIG_NETFILTER_NETLINK_QUEUE
|
||||||
|
AUTOLOAD:=$(call AutoLoad,48,nfnetlink_queue)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/nfnetlink-queue/description
|
||||||
|
Kernel modules support for queueing packets via NFNETLINK
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,nfnetlink-queue))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/nf-conntrack-netlink
|
||||||
|
SUBMENU:=$(NF_MENU)
|
||||||
|
TITLE:=Connection tracking netlink interface
|
||||||
|
DEPENDS:=@LINUX_2_6 +kmod-nfnetlink +kmod-ipt-conntrack
|
||||||
|
FILES:=$(LINUX_DIR)/net/netfilter/nf_conntrack_netlink.$(LINUX_KMOD_SUFFIX)
|
||||||
|
KCONFIG:=CONFIG_NF_CT_NETLINK
|
||||||
|
AUTOLOAD:=$(call AutoLoad,49,nf_conntrack_netlink)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/nf-conntrack-netlink/description
|
||||||
|
Kernel modules support for a netlink-based connection tracking
|
||||||
|
userspace interface
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,nf-conntrack-netlink))
|
||||||
|
Loading…
Reference in New Issue
Block a user