Kconfig 843 B

1234567891011121314151617181920212223242526272829303132333435
  1. if RT_USING_DFS_V2
  2. config RT_USING_DFS_DEVFS
  3. bool "Using devfs for device objects"
  4. default y
  5. config RT_USING_DFS_ROMFS
  6. bool "Enable ReadOnly file system on flash"
  7. default n
  8. config RT_USING_DFS_CROMFS
  9. bool "Enable ReadOnly compressed file system on flash"
  10. default n
  11. # select PKG_USING_ZLIB
  12. config RT_USING_DFS_RAMFS
  13. bool "Enable RAM file system"
  14. select RT_USING_MEMHEAP
  15. default n
  16. config RT_USING_DFS_TMPFS
  17. bool "Enable TMP file system"
  18. default n
  19. config RT_USING_DFS_NFS
  20. bool "Using NFS v3 client file system"
  21. depends on RT_USING_LWIP
  22. default n
  23. if RT_USING_DFS_NFS
  24. config RT_NFS_HOST_EXPORT
  25. string "NFSv3 host export"
  26. default "192.168.1.5:/"
  27. endif
  28. endif