Changes between Version 4 and Version 5 of SF_Ch_pstore


Ignore:
Timestamp:
09/07/18 07:25:50 (7 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SF_Ch_pstore

    v4 v5  
    4444I am using the attached kernel module to create a kernel panic (modprobe the module)
    4545The files are placed in a directory "panic" in the kernel directory and enabled in kernel config with
    46 
    4746{{{
    4847CONFIG_GUHL_PANIC=m
    4948}}}
     49In addition the following line has to be added to the Makefile in the kernel directory.
     50{{{
     51obj-y += panic/
     52}}}
     53and the following line has to be added to the to the Kconfig in the root of the kernel directory
     54{{{
     55source "kernel/panic/Kconfig"
     56}}}
    5057
    5158
     59