Kconfig.debug 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. menu "Kernel hacking"
  2. source "lib/Kconfig.debug"
  3. config FULLDEBUG
  4. bool "Full Symbolic/Source Debugging support"
  5. help
  6. Enable debugging symbols on kernel build.
  7. config HIGHPROFILE
  8. bool "Use fast second timer for profiling"
  9. help
  10. Use a fast secondary clock to produce profiling information.
  11. config NO_KERNEL_MSG
  12. bool "Suppress Kernel BUG Messages"
  13. help
  14. Do not output any debug BUG messages within the kernel.
  15. config GDB_MAGICPRINT
  16. bool "Message Output for GDB MagicPrint service"
  17. depends on (H8300H_SIM || H8S_SIM)
  18. help
  19. kernel messages output using MagicPrint service from GDB
  20. config SYSCALL_PRINT
  21. bool "SystemCall trace print"
  22. help
  23. output history of systemcall
  24. config GDB_DEBUG
  25. bool "Use gdb stub"
  26. depends on (!H8300H_SIM && !H8S_SIM)
  27. help
  28. gdb stub exception support
  29. config SH_STANDARD_BIOS
  30. bool "Use gdb protocol serial console"
  31. depends on (!H8300H_SIM && !H8S_SIM)
  32. help
  33. serial console output using GDB protocol.
  34. Require eCos/RedBoot
  35. config DEFAULT_CMDLINE
  36. bool "Use builtin commandline"
  37. default n
  38. help
  39. builtin kernel commandline enabled.
  40. config KERNEL_COMMAND
  41. string "Buildin command string"
  42. depends on DEFAULT_CMDLINE
  43. help
  44. builtin kernel commandline strings.
  45. config BLKDEV_RESERVE
  46. bool "BLKDEV Reserved Memory"
  47. default n
  48. help
  49. Reserved BLKDEV area.
  50. config BLKDEV_RESERVE_ADDRESS
  51. hex 'start address'
  52. depends on BLKDEV_RESERVE
  53. help
  54. BLKDEV start address.
  55. endmenu