Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. config BINFMT_PCODE_STACKSIZE
  6. int "P-code interpreter stack size"
  7. default 2048
  8. ---help---
  9. This is the stack size that will be used when starting P-code interpreter.
  10. config BINFMT_PCODE_PRIORITY
  11. int "P-code interpreter priority"
  12. default 100
  13. ---help---
  14. This is the task_priority that will be used when starting P-code interpreter.
  15. config BINFMT_PCODE_VARSTACKSIZE
  16. int "P-code variable stack size"
  17. default 1024
  18. ---help---
  19. This size of the P-Code variable storage area to be allocated by the
  20. P-Code runtime.
  21. config BINFMT_PCODE_STRSTACKSIZE
  22. int "P-code string stack size"
  23. default 128
  24. ---help---
  25. This size of the P-Code string stack area to be allocated by the
  26. P-Code runtime.
  27. config BINFMT_PCODE_TEST_FS
  28. bool "Mount a test file system"
  29. depends on FS_ROMFS && !DISABLE_MOUNTPOINT
  30. ---help---
  31. Mount a test file system. This test file system was used to verify
  32. the P-Code binary format.
  33. if BINFMT_PCODE_TEST_FS
  34. config BINFMT_PCODE_TEST_DEVMINOR
  35. int "Test file system minor device number"
  36. default 0
  37. ---help---
  38. The minor device number of the ROMFS block. For example, the N in
  39. /dev/ramN. Used for registering the RAM block driver that will hold
  40. the ROMFS file system containing the P-code files to be tested.
  41. Default: 0
  42. config BINFMT_PCODE_TEST_DEVPATH
  43. string "Test file system device Path"
  44. default "/dev/ram0"
  45. ---help---
  46. The path to the ROMFS block driver device. This must match
  47. BINFMT_PCODE_TEST_DEVMINOR. Used for registering the RAM block
  48. driver that will hold the ROMFS file system containing the P-code
  49. files to be tested. Default: "/dev/ram0"
  50. config BINFMT_PCODE_TEST_MOUNTPOINT
  51. string "Test file system mount point"
  52. default "/bin"
  53. ---help---
  54. Location where the test file system will be mounted
  55. endif # BINFMT_PCODE_TEST_FS
  56. config BINFMT_PCODE_DUMPBUFFER
  57. bool "Dump P-code buffers"
  58. default n
  59. depends on DEBUG_INFO
  60. ---help---
  61. Dump various P-code buffers for debug purposes