Kconfig.debug 480 B

12345678910111213141516171819
  1. menu "Kernel hacking"
  2. config TRACE_IRQFLAGS_SUPPORT
  3. bool
  4. default y
  5. source "lib/Kconfig.debug"
  6. config KPROBES
  7. bool "Kprobes"
  8. depends on DEBUG_KERNEL
  9. help
  10. Kprobes allows you to trap at almost any kernel address and
  11. execute a callback function. register_kprobe() establishes
  12. a probepoint and specifies the callback. Kprobes is useful
  13. for kernel debugging, non-intrusive instrumentation and testing.
  14. If in doubt, say "N".
  15. endmenu