mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 13:09:38 +00:00 
			
		
		
		
	 305592f1aa
			
		
	
	305592f1aa
	
	
	
		
			
			- implemented SYS_DRVINFO syscall and version handling for the semihosting driver - removed a support of old oocd versions renamed kconfig options: - CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN to CONFIG_VFS_SEMIHOSTFS_HOST_PATH_MAX_LEN - CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS to CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS
		
			
				
	
	
		
			90 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| menu "Virtual file system"
 | |
| 
 | |
|     config VFS_SUPPORT_IO
 | |
|         bool "Provide basic I/O functions"
 | |
|         default y
 | |
|         help
 | |
|             If enabled, the following functions are provided by the VFS component.
 | |
| 
 | |
|             open, close, read, write, pread, pwrite, lseek, fstat, fsync, ioctl, fcntl
 | |
| 
 | |
|             Filesystem drivers can then be registered to handle these functions
 | |
|             for specific paths.
 | |
| 
 | |
|             Disabling this option can save memory when the support for these functions
 | |
|             is not required.
 | |
| 
 | |
|     config VFS_SUPPORT_DIR
 | |
|         bool "Provide directory related functions"
 | |
|         default y
 | |
|         # If some filesystem is used, adding I/O support is probably needed and
 | |
|         # is not a big overhead, compared to code size of the filesystem,
 | |
|         # so make this depend on IO.
 | |
|         depends on VFS_SUPPORT_IO
 | |
|         help
 | |
|             If enabled, the following functions are provided by the VFS component.
 | |
| 
 | |
|             stat, link, unlink, rename, utime, access, truncate, rmdir, mkdir,
 | |
|             opendir, closedir, readdir, readdir_r, seekdir, telldir, rewinddir
 | |
| 
 | |
|             Filesystem drivers can then be registered to handle these functions
 | |
|             for specific paths.
 | |
| 
 | |
|             Disabling this option can save memory when the support for these functions
 | |
|             is not required.
 | |
| 
 | |
|     config VFS_SUPPORT_SELECT
 | |
|         bool "Provide select function"
 | |
|         default y
 | |
|         # Dependency on !LWIP_USE_ONLY_LWIP_SELECT is for compatibility
 | |
|         depends on VFS_SUPPORT_IO && !LWIP_USE_ONLY_LWIP_SELECT
 | |
|         help
 | |
|             If enabled, select function is provided by the VFS component, and can be used
 | |
|             on peripheral file descriptors (such as UART) and sockets at the same time.
 | |
| 
 | |
|             If disabled, the default select implementation will be provided by LWIP for
 | |
|             sockets only.
 | |
| 
 | |
|             Disabling this option can reduce code size if support for "select" on UART file
 | |
|             descriptors is not required.
 | |
| 
 | |
|     config VFS_SUPPRESS_SELECT_DEBUG_OUTPUT
 | |
|         bool "Suppress select() related debug outputs"
 | |
|         depends on VFS_SUPPORT_SELECT
 | |
|         default y
 | |
|         help
 | |
|             Select() related functions might produce an unconveniently lot of
 | |
|             debug outputs when one sets the default log level to DEBUG or higher.
 | |
|             It is possible to suppress these debug outputs by enabling this
 | |
|             option.
 | |
| 
 | |
|     config VFS_SUPPORT_TERMIOS
 | |
|         bool "Provide termios.h functions"
 | |
|         default y
 | |
|         # Very likely, only makes sense for UART VFS driver, which itself depends on VFS_SUPPORT_IO
 | |
|         depends on VFS_SUPPORT_IO
 | |
|         help
 | |
|             Disabling this option can save memory when the support for termios.h is not required.
 | |
| 
 | |
| 
 | |
|     menu "Host File System I/O (Semihosting)"
 | |
|         depends on VFS_SUPPORT_IO
 | |
| 
 | |
|         config VFS_SEMIHOSTFS_MAX_MOUNT_POINTS
 | |
|             int "Host FS: Maximum number of the host filesystem mount points"
 | |
|             default 1
 | |
|             help
 | |
|                 Define maximum number of host filesystem mount points.
 | |
| 
 | |
|         config VFS_SEMIHOSTFS_HOST_PATH_MAX_LEN
 | |
|             int "Host FS: Maximum path length for the host base directory"
 | |
|             default 128
 | |
|             help
 | |
|                 Define maximum path length for the host base directory which is to be mounted.
 | |
|                 If host path passed to esp_vfs_semihost_register() is longer than this value
 | |
|                 it will be truncated.
 | |
| 
 | |
|     endmenu
 | |
| 
 | |
| endmenu
 |