[openwrt/openwrt] kernel: modules: add lkdtm module

LEDE Commits lede-commits at lists.infradead.org
Fri Feb 3 05:18:02 PST 2023


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/ecafdfa894e73d2fd69a1e41bd089653e03fdae5

commit ecafdfa894e73d2fd69a1e41bd089653e03fdae5
Author: Brian Norris <computersforpeace at gmail.com>
AuthorDate: Fri Jan 27 12:53:32 2023 -0800

    kernel: modules: add lkdtm module
    
    Useful for debugging panic/error handling, crash logging, and more.
    
    Signed-off-by: Brian Norris <computersforpeace at gmail.com>
---
 package/kernel/linux/modules/other.mk | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk
index c5f944ed31..2bd15dfe67 100644
--- a/package/kernel/linux/modules/other.mk
+++ b/package/kernel/linux/modules/other.mk
@@ -243,6 +243,22 @@ endef
 $(eval $(call KernelPackage,gpio-f7188x))
 
 
+define KernelPackage/lkdtm
+  SUBMENU:=$(OTHER_MENU)
+  TITLE:=Linux Kernel Dump Test Tool Module
+  KCONFIG:=CONFIG_LKDTM
+  FILES:=$(LINUX_DIR)/drivers/misc/lkdtm/lkdtm.ko
+  AUTOLOAD:=$(call AutoProbe,lkdtm)
+endef
+
+define KernelPackage/lkdtm/description
+ This module enables testing of the different dumping mechanisms by inducing
+ system failures at predefined crash points.
+endef
+
+$(eval $(call KernelPackage,lkdtm))
+
+
 define KernelPackage/pinctrl-mcp23s08
   SUBMENU:=$(OTHER_MENU)
   TITLE:=Microchip MCP23xxx I/O expander




More information about the lede-commits mailing list