Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 571 Bytes

File metadata and controls

18 lines (12 loc) · 571 Bytes

Kernel DEBUG Macro

内核模块DEBUG宏,和Android里面的NODEBUG宏一样

一、参考文档

二、使用方法

  • 其实开启DEBUG宏的方法很简单,在需要pr_debug/dev_dbg输出的模块开头,直接#define DEBUG即可;
    • init/main.c
      • #define DEBUG /* Enable initcall_debug */
  • make -j4 modules
  • sudo make modules_install