Kconfig.debug 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 useing MagicPrint service from GDB
  20. config SYSCALL_PRINT
  21. bool "SystemCall trace print"
  22. help
  23. outout 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 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 buildin commandline"
  37. default n
  38. help
  39. buildin kernel commandline enabled.
  40. config KERNEL_COMMAND
  41. string "Buildin commmand string"
  42. depends on DEFAULT_CMDLINE
  43. help
  44. buildin kernel commandline strings.
  45. config BLKDEV_RESERVE
  46. bool "BLKDEV Reserved Memory"
  47. default n
  48. help
  49. Reserved BLKDEV area.
  50. config CONFIG_BLKDEV_RESERVE_ADDRESS
  51. hex 'start address'
  52. depends on BLKDEV_RESERVE
  53. help
  54. BLKDEV start address.
  55. endmenu