Kconfig.debug 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config BOOTPARAM
  4. bool 'Compiled-in Kernel Boot Parameter'
  5. config BOOTPARAM_STRING
  6. string 'Kernel Boot Parameter'
  7. default 'console=ttyS0,19200'
  8. depends on BOOTPARAM
  9. config EARLY_PRINTK
  10. bool "Early printk"
  11. depends on MVME16x || MAC
  12. help
  13. Write kernel log output directly to a serial port.
  14. This is useful for kernel debugging when your machine crashes very
  15. early before the console code is initialized.
  16. You should normally say N here, unless you want to debug such a crash.
  17. if !MMU
  18. config FULLDEBUG
  19. bool "Full Symbolic/Source Debugging support"
  20. help
  21. Enable debugging symbols on kernel build.
  22. config HIGHPROFILE
  23. bool "Use fast second timer for profiling"
  24. depends on COLDFIRE
  25. help
  26. Use a fast secondary clock to produce profiling information.
  27. config NO_KERNEL_MSG
  28. bool "Suppress Kernel BUG Messages"
  29. help
  30. Do not output any debug BUG messages within the kernel.
  31. config BDM_DISABLE
  32. bool "Disable BDM signals"
  33. depends on COLDFIRE
  34. help
  35. Disable the ColdFire CPU's BDM signals.
  36. endif
  37. endmenu