Kconfig.debug 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Kernel hacking"
  2. config TRACE_IRQFLAGS_SUPPORT
  3. bool
  4. default y
  5. source "lib/Kconfig.debug"
  6. config CMDLINE
  7. string "Default kernel command string"
  8. default ""
  9. help
  10. On some platforms, there is currently no way for the boot loader to
  11. pass arguments to the kernel. For these platforms, you can supply
  12. some command-line options at build time by entering them here. In
  13. other cases you can specify kernel args so that you don't have
  14. to set them up in board prom initialization routines.
  15. config DEBUG_STACK_USAGE
  16. bool "Enable stack utilization instrumentation"
  17. depends on DEBUG_KERNEL
  18. help
  19. Enables the display of the minimum amount of free stack which each
  20. task has ever had available in the sysrq-T and sysrq-P debug output.
  21. This option will slow down process creation somewhat.
  22. config RUNTIME_DEBUG
  23. bool "Enable run-time debugging"
  24. depends on DEBUG_KERNEL
  25. help
  26. If you say Y here, some debugging macros will do run-time checking.
  27. If you say N here, those macros will mostly turn to no-ops. See
  28. include/asm-score/debug.h for debuging macros.
  29. If unsure, say N.
  30. endmenu