Kconfig.debug 776 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. if !MMU
  4. config FULLDEBUG
  5. bool "Full Symbolic/Source Debugging support"
  6. help
  7. Enable debugging symbols on kernel build.
  8. config HIGHPROFILE
  9. bool "Use fast second timer for profiling"
  10. depends on COLDFIRE
  11. help
  12. Use a fast secondary clock to produce profiling information.
  13. config BOOTPARAM
  14. bool 'Compiled-in Kernel Boot Parameter'
  15. config BOOTPARAM_STRING
  16. string 'Kernel Boot Parameter'
  17. default 'console=ttyS0,19200'
  18. depends on BOOTPARAM
  19. config NO_KERNEL_MSG
  20. bool "Suppress Kernel BUG Messages"
  21. help
  22. Do not output any debug BUG messages within the kernel.
  23. config BDM_DISABLE
  24. bool "Disable BDM signals"
  25. depends on (EXPERIMENTAL && COLDFIRE)
  26. help
  27. Disable the ColdFire CPU's BDM signals.
  28. endif
  29. endmenu