/Zephyr-latest/subsys/fs/ |
D | Kconfig.littlefs | 7 bool "LittleFS support" 11 Enables LittleFS file system support. 15 menu "LittleFS Settings" 22 This is a global maximum across all mounted littlefs filesystems. 28 This is a global maximum across all mounted littlefs filesystems. 46 Each cache buffers a portion of a block in RAM. The littlefs 73 int "Enable flexible file cache sizes for littlefs" 76 littlefs requires a per-file buffer to cache data. 78 When applications customize littlefs configurations and support 94 int "Size of per-allocation overhead for littleFS heap in bytes" [all …]
|
/Zephyr-latest/samples/subsys/fs/littlefs/ |
D | sample.yaml | 2 name: littlefs filesystem sample 8 sample.filesystem.littlefs: 31 sample.filesystem.littlefs.blk: 38 sample.filesystem.littlefs.nrf52840dk_spi: 44 sample.filesystem.littlefs.nrf52840dk_qspi: 50 sample.filesystem.littlefs.stm32h747i_disco_m7_blk: 58 sample.filesystem.littlefs.nucleo_h743zi_qspi: 63 sample.filesystem.littlefs.nucleo_h743zi_blk: 69 sample.filesystem.littlefs.stm32l562e_dk_ospi: 74 sample.filesystem.littlefs.stm32f746g_disco_blk:
|
D | README.rst | 1 .. zephyr:code-sample:: littlefs 2 :name: LittleFS filesystem 5 Use file system API over LittleFS. 11 <file_system_api>` over `littlefs`_, using file system with files that: 18 https://github.com/ARMmbed/littlefs 28 compatible littlefs file system its contents will be replaced by an 31 [00:00:00.010,192] <inf> littlefs: LittleFS version 2.0, disk version 2.0 32 [00:00:00.010,559] <err> littlefs: Corrupted dir pair at 0 1 33 [00:00:00.010,559] <wrn> littlefs: can't mount (LFS -84); formatting 39 [00:00:00.182,434] <inf> littlefs: filesystem mounted! [all …]
|
/Zephyr-latest/modules/littlefs/ |
D | CMakeLists.txt | 2 add_library(LITTLEFS INTERFACE) target 4 target_include_directories(LITTLEFS INTERFACE 8 target_link_libraries(LITTLEFS INTERFACE zephyr_interface) 9 target_compile_definitions(LITTLEFS INTERFACE LFS_CONFIG=zephyr_lfs_config.h) 17 zephyr_library_link_libraries(LITTLEFS)
|
D | Kconfig | 7 # Configuration of LittleFS is found in subsys/fs/Kconfig.littlefs for historic
|
/Zephyr-latest/include/zephyr/fs/ |
D | littlefs.h | 21 * @brief Get the major part of the littlefs disk version 23 * @param disk_version The disk version of littlefs partition 24 * @return The major part of the littlefs disk version. 29 * @brief Get the minor part of the littlefs disk version 31 * @param disk_version The disk version of littlefs partition 32 * @return The minor part of the littlefs disk version. 36 /** @brief Filesystem info structure for LittleFS mount */ 58 /** @brief Define a littlefs configuration with customized size 62 * littlefs configuration structure to use the provided values instead 72 * values are consistent with littlefs requirements. [all …]
|
/Zephyr-latest/tests/subsys/fs/littlefs/ |
D | testcase.yaml | 4 - littlefs 14 - littlefs 16 filesystem.littlefs.default: 19 filesystem.littlefs.custom:
|
D | CMakeLists.txt | 5 project(littlefs) project 8 # LittleFS opens files for RW by default if no flags given and crashes,
|
/Zephyr-latest/samples/subsys/usb/mass/ |
D | README.rst | 156 LittleFS Example 160 128 KiBy `littlefs`_ partition compatible with the one produced by the 161 :zephyr:code-sample:`littlefs` sample. 172 running a littlefs-FUSE-capable operating system. The output to the 182 [00:00:00.009,002] <inf> littlefs: LittleFS version 2.2, disk version 2.0 183 [00:00:00.009,063] <inf> littlefs: FS at MX25R64:0x0 is 16 0x1000-byte blocks with 512 cye 184 [00:00:00.009,063] <inf> littlefs: sizes: rd 16 ; pr 16 ; ca 64 ; la 32 185 [00:00:00.011,718] <inf> littlefs: /lfs mounted 194 For information on mounting littlefs file system on Linux or FreeBSD 195 systems refer to the "littlefs Usage" section below. [all …]
|
/Zephyr-latest/tests/subsys/fs/littlefs/src/ |
D | test_lfs_dirops.c | 7 /* Directory littlefs operations: 21 #include <zephyr/fs/littlefs.h> 28 ZTEST(littlefs, test_lfs_dirops) in ZTEST() argument
|
D | test_util.c | 29 ZTEST(littlefs, test_util_path_init_base) in ZTEST() argument 51 ZTEST(littlefs, test_util_path_init_overrun) in ZTEST() argument 77 ZTEST(littlefs, test_util_path_init_extended) in ZTEST() argument 86 ZTEST(littlefs, test_util_path_extend) in ZTEST() argument 98 ZTEST(littlefs, test_util_path_extend_up) in ZTEST() argument 110 ZTEST(littlefs, test_util_path_extend_overrun) in ZTEST() argument
|
D | testfs_mkfs.c | 8 #include <zephyr/fs/littlefs.h> 32 ZTEST(littlefs, test_fs_mkfs_simple_lfs) in ZTEST() argument 40 ZTEST(littlefs, test_fs_mkfs_ops_lfs) in ZTEST() argument 56 ZTEST(littlefs, test_fs_mkfs_custom) in ZTEST() argument
|
D | testfs_mount_flags.c | 9 #include <zephyr/fs/littlefs.h> 27 ZTEST(littlefs, test_fs_mount_flags_lfs) in ZTEST() argument
|
D | testfs_open_flags.c | 8 #include <zephyr/fs/littlefs.h> 39 ZTEST(littlefs, test_fs_open_flags_lfs) in ZTEST() argument
|
/Zephyr-latest/tests/subsys/fs/multi-fs/src/ |
D | test_littlefs_mount.c | 12 #include <zephyr/fs/littlefs.h> 25 .mnt_point = "/littlefs" 34 TC_PRINT("Error mounting littlefs [%d]\n", res); in test_mount()
|
D | test_fs_shell.c | 35 test_shell_exec("fs mount littlefs", -EINVAL); in ZTEST() 47 test_shell_exec("fs mount littlefs /littlefs", 0); in test_fs_littlefs_mount()
|
/Zephyr-latest/tests/subsys/settings/file/src/ |
D | settings_setup_littlefs.c | 10 #include <zephyr/fs/littlefs.h> 15 /* LittleFS work area struct */ 36 zassume_true(rc == 0, "mounting littlefs [%d]\n", rc); in config_setup_fs()
|
/Zephyr-latest/tests/subsys/logging/log_backend_fs/ |
D | testcase.yaml | 3 - littlefs 9 - littlefs
|
/Zephyr-latest/dts/bindings/fs/ |
D | zephyr,fstab,littlefs.yaml | 7 compatible: "zephyr,fstab,littlefs" 42 Each cache buffers a portion of a block in RAM. The littlefs 83 The littlefs disk version. 85 To maintain backward compatibility with existing littlefs
|
/Zephyr-latest/tests/subsys/fs/multi-fs/ |
D | testcase.yaml | 3 - littlefs 8 - littlefs
|
/Zephyr-latest/samples/subsys/shell/fs/ |
D | README.rst | 5 Access a LittleFS file system partition in flash using the file system shell. 10 This example provides shell access to a LittleFS file system partition in flash. 15 A board with LittleFS file system support and UART console 77 the :zephyr:code-sample:`littlefs` sample. 99 Begin by mounting the LittleFS file system. 103 fs mount littlefs /lfs 148 fs mount (littlefs|fat) <path>
|
/Zephyr-latest/samples/subsys/fs/littlefs/boards/ |
D | particle_xenon.overlay | 15 /* This is the littlefs v1 file system pre-installed 19 label = "littlefs";
|
/Zephyr-latest/samples/subsys/shell/fs/boards/ |
D | particle_xenon.overlay | 15 /* This is the littlefs v1 file system pre-installed 19 label = "littlefs";
|
/Zephyr-latest/doc/services/file_system/ |
D | index.rst | 41 - ``FS_FATFS`` is the file system type like FATFS or LittleFS. 56 formatted to LittleFS; 58 or SPI connected FLASH, or LittleFS in flash, depending on the sample configuration.
|
/Zephyr-latest/samples/subsys/settings/boards/ |
D | native_sim.conf | 1 # Enable the LittleFS file system.
|