Kconfig 1.1 KB

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