Changes between Version 4 and Version 5 of SF_Ch_pstore
- Timestamp:
- 09/07/18 07:25:50 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SF_Ch_pstore
v4 v5 44 44 I am using the attached kernel module to create a kernel panic (modprobe the module) 45 45 The files are placed in a directory "panic" in the kernel directory and enabled in kernel config with 46 47 46 {{{ 48 47 CONFIG_GUHL_PANIC=m 49 48 }}} 49 In addition the following line has to be added to the Makefile in the kernel directory. 50 {{{ 51 obj-y += panic/ 52 }}} 53 and the following line has to be added to the to the Kconfig in the root of the kernel directory 54 {{{ 55 source "kernel/panic/Kconfig" 56 }}} 50 57 51 58 59