projects
/
openwrt
/
staging
/
florian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b5e128
)
kernel: add nlmon kernel module
author
Hauke Mehrtens
<
[email protected]
>
Mon, 12 Sep 2016 20:45:47 +0000
(22:45 +0200)
committer
Hauke Mehrtens
<
[email protected]
>
Fri, 16 Sep 2016 21:00:01 +0000
(23:00 +0200)
This driver allows to monitor netlink communication on the system.
Signed-off-by: Hauke Mehrtens <
[email protected]
>
package/kernel/linux/modules/netsupport.mk
patch
|
blob
|
history
diff --git
a/package/kernel/linux/modules/netsupport.mk
b/package/kernel/linux/modules/netsupport.mk
index e52dab6da1c19e383664d326ef3330cf6679907b..587229d00464fd47a95d85b30e6d9e1f57c2f087 100644
(file)
--- a/
package/kernel/linux/modules/netsupport.mk
+++ b/
package/kernel/linux/modules/netsupport.mk
@@
-1041,3
+1041,18
@@
define KernelPackage/9pnet/description
endef
$(eval $(call KernelPackage,9pnet))
+
+
+define KernelPackage/nlmon
+ SUBMENU:=$(NETWORK_SUPPORT_MENU)
+ TITLE:=Virtual netlink monitoring device
+ KCONFIG:=CONFIG_NLMON
+ FILES:=$(LINUX_DIR)/drivers/net/nlmon.ko
+ AUTOLOAD:=$(call AutoProbe,nlmon)
+endef
+
+define KernelPackage/nlmon/description
+ Kernel module which adds a monitoring device for netlink.
+endef
+
+$(eval $(call KernelPackage,nlmon))