Kconfig.debug 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 !(SUN3 || M68360 || M68000 || COLDFIRE)
  12. help
  13. Write kernel log output directly to a serial port.
  14. Where implemented, output goes to the framebuffer as well.
  15. PROM console functionality on Sun 3x is not affected by this option.
  16. Pass "earlyprintk" on the kernel command line to get a
  17. boot console.
  18. This is useful for kernel debugging when your machine crashes very
  19. early, i.e. before the normal console driver is loaded.
  20. You should normally say N here, unless you want to debug such a crash.
  21. if !MMU
  22. config FULLDEBUG
  23. bool "Full Symbolic/Source Debugging support"
  24. help
  25. Enable debugging symbols on kernel build.
  26. config HIGHPROFILE
  27. bool "Use fast second timer for profiling"
  28. depends on COLDFIRE
  29. help
  30. Use a fast secondary clock to produce profiling information.
  31. config NO_KERNEL_MSG
  32. bool "Suppress Kernel BUG Messages"
  33. help
  34. Do not output any debug BUG messages within the kernel.
  35. config BDM_DISABLE
  36. bool "Disable BDM signals"
  37. depends on COLDFIRE
  38. help
  39. Disable the ColdFire CPU's BDM signals.
  40. endif
  41. endmenu