Lines Matching +full:mount +full:- +full:point
6 Zephyr RTOS Virtual Filesystem Switch (VFS) allows applications to mount multiple
7 file systems at different mount points (e.g., ``/fatfs`` and ``/lfs``). The
8 mount point data structure contains all the necessary information required
9 to instantiate, mount, and operate on a file system. The File system Switch
17 :c:enumerator:`FS_TYPE_EXTERNAL_BASE` to avoid clashes with in-tree identifiers.
19 .. code-block:: c
26 the mount point as the disk volume name, which is used by the file system library
31 .. code-block:: c
41 - ``FS_FATFS`` is the file system type like FATFS or LittleFS.
42 - ``FATFS_MNTP`` is the mount point where the file system will be mounted.
43 - ``fat_fs`` is the file system data which will be used by fs_mount() API.
54 - ``samples/subsys/fs/fat_fs`` is an example of FAT file system usage with SDHC media;
55 - ``samples/subsys/shell/fs`` is an example of Shell fs subsystem, using internal flash partition
57 - ``samples/subsys/usb/mass/`` example of USB Mass Storage device that uses FAT FS driver with RAM