Changes between Version 1 and Version 2 of SF_Ch_pstore


Ignore:
Timestamp:
09/07/18 06:46:34 (7 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SF_Ch_pstore

    v1 v2  
    1919
    2020== Kernel panic ==
     21For what ever reason the standard way to generate a kernel panic
     22{{{
     23echo c > /proc/sysrq-trigger
     24}}}
     25did not work for me so I created a kernel module that I can modprobe to generate a panic.
     26
    2127I am using the attached kernel module to create a kernel panic (modprobe the module)
     28The files are placed in a directory "panic" in the kernel directory and enabled in kernel config with
     29
     30{{{
     31CONFIG_GUHL_PANIC=m
     32}}}
     33
     34