Kconfig.debug 812 B

12345678910111213141516171819202122232425262728
  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 RUNTIME_DEBUG
  16. bool "Enable run-time debugging"
  17. depends on DEBUG_KERNEL
  18. help
  19. If you say Y here, some debugging macros will do run-time checking.
  20. If you say N here, those macros will mostly turn to no-ops. See
  21. include/asm-score/debug.h for debugging macros.
  22. If unsure, say N.
  23. endmenu