mirror of https://github.com/hak5/openwrt.git
kernel/modules: add kmod-bpf-test package
Add the test_bpf module that runs various test vectors against the BPF interpreter or BPF JIT compiler. The module must be manually loaded, as with the kmod-crypto-test module which serves a similar purpose. Signed-off-by: Tony Ambardar <itugrok@yahoo.com>openwrt-19.07
parent
6be23e91b6
commit
ebcd5226cc
|
@ -798,6 +798,17 @@ endef
|
|||
$(eval $(call KernelPackage,sched-bpf))
|
||||
|
||||
|
||||
define KernelPackage/bpf-test
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=Test Berkeley Packet Filter functionality
|
||||
DEPENDS:=@!LINUX_3_18
|
||||
KCONFIG:=CONFIG_TEST_BPF
|
||||
FILES:=$(LINUX_DIR)/lib/test_bpf.ko
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,bpf-test))
|
||||
|
||||
|
||||
define KernelPackage/sched
|
||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||
TITLE:=Extra traffic schedulers
|
||||
|
|
Loading…
Reference in New Issue