Kconfig.debug 776 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. if !MMU
  10. config FULLDEBUG
  11. bool "Full Symbolic/Source Debugging support"
  12. help
  13. Enable debugging symbols on kernel build.
  14. config HIGHPROFILE
  15. bool "Use fast second timer for profiling"
  16. depends on COLDFIRE
  17. help
  18. Use a fast secondary clock to produce profiling information.
  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