Kconfig.debug 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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" if EMBEDDED
  11. depends on MVME16x || MAC
  12. default y
  13. help
  14. Write kernel log output directly to a serial port.
  15. This is useful for kernel debugging when your machine crashes very
  16. early before the console code is initialized.
  17. You should normally say N here, unless you want to debug such a crash.
  18. if !MMU
  19. config FULLDEBUG
  20. bool "Full Symbolic/Source Debugging support"
  21. help
  22. Enable debugging symbols on kernel build.
  23. config HIGHPROFILE
  24. bool "Use fast second timer for profiling"
  25. depends on COLDFIRE
  26. help
  27. Use a fast secondary clock to produce profiling information.
  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