Kconfig.debug 612 B

123456789101112131415161718192021222324
  1. menu "Kernel hacking"
  2. config TRACE_IRQFLAGS_SUPPORT
  3. def_bool y
  4. source "lib/Kconfig.debug"
  5. config S390_PTDUMP
  6. bool "Export kernel pagetable layout to userspace via debugfs"
  7. depends on DEBUG_KERNEL
  8. select DEBUG_FS
  9. ---help---
  10. Say Y here if you want to show the kernel pagetable layout in a
  11. debugfs file. This information is only useful for kernel developers
  12. who are working in architecture specific areas of the kernel.
  13. It is probably not a good idea to enable this feature in a production
  14. kernel.
  15. If in doubt, say "N"
  16. config DEBUG_SET_MODULE_RONX
  17. def_bool y
  18. depends on MODULES
  19. endmenu