Kconfig.debug 1012 B

1234567891011121314151617181920212223242526272829303132333435
  1. menu "Kernel hacking"
  2. config TRACE_IRQFLAGS_SUPPORT
  3. def_bool y
  4. source "lib/Kconfig.debug"
  5. config STRICT_DEVMEM
  6. def_bool y
  7. prompt "Filter access to /dev/mem"
  8. ---help---
  9. This option restricts access to /dev/mem. If this option is
  10. disabled, you allow userspace access to all memory, including
  11. kernel and userspace memory. Accidental memory access is likely
  12. to be disastrous.
  13. Memory access is required for experts who want to debug the kernel.
  14. If you are unsure, say Y.
  15. config S390_PTDUMP
  16. bool "Export kernel pagetable layout to userspace via debugfs"
  17. depends on DEBUG_KERNEL
  18. select DEBUG_FS
  19. ---help---
  20. Say Y here if you want to show the kernel pagetable layout in a
  21. debugfs file. This information is only useful for kernel developers
  22. who are working in architecture specific areas of the kernel.
  23. It is probably not a good idea to enable this feature in a production
  24. kernel.
  25. If in doubt, say "N"
  26. config DEBUG_SET_MODULE_RONX
  27. def_bool y
  28. depends on MODULES
  29. endmenu