Kconfig.debug 1.1 KB

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