Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 FS_HOSTFS
  6. bool "Host File System"
  7. default n
  8. depends on !DISABLE_MOUNTPOINT
  9. ---help---
  10. The Host file system provides a mechanism to mount directories
  11. from the host OS during simulation mode. The host directory
  12. to be "mounted" is specified during the mount command using
  13. the -o command line switch, such as:
  14. mount -t hostfs -o fs=/home/user/nuttx_root /host
  15. For non-NSH operation, the option "fs=home/user/nuttx_root" would
  16. be passed to the 'mount()' routine using the optional 'void *data'
  17. parameter.
  18. config FS_HOSTFS_RPMSG
  19. bool "Host File System Rpmsg"
  20. default n
  21. depends on FS_HOSTFS
  22. depends on OPENAMP
  23. ---help---
  24. Use Host file system to mount directories through rpmsg.
  25. This is the driver that sending the message.
  26. config FS_HOSTFS_RPMSG_SERVER
  27. bool "Host File System Rpmsg Server"
  28. default n
  29. depends on OPENAMP
  30. ---help---
  31. Use Host file system to mount directories through rpmsg.
  32. This is the driver that receiving the message.