Searched +full:commit +full:- +full:tree (Results 1 – 3 of 3) sorted by relevance
4 - CFLAGS=-Werror5 - MAKEFLAGS=-j11 - $HOME/.cache/apt14 _: &install-common16 - sudo apt-get install python3 python3-pip17 - sudo pip3 install toml18 # setup a ram-backed disk to speed up reentrant tests19 - mkdir disks20 - sudo mount -t tmpfs -o size=100m tmpfs disks21 - export TFLAGS="$TFLAGS --disk=disks/disk"[all …]
3 A little fail-safe filesystem designed for microcontrollers.6 | | | .---._____7 .-----. | |8 --|o |---| littlefs |9 --| |---| |10 '-----' '----------'16 filesystem that is resilient to power-loss and flash wear without using19 This document covers the high-level design of littlefs, how it is different21 low-level details covering every bit on disk, check out [SPEC.md](SPEC.md).25 The embedded systems littlefs targets are usually 32-bit microcontrollers with[all …]
5 * SPDX-License-Identifier: BSD-3-Clause10 #define LFS_BLOCK_NULL ((lfs_block_t)-1)11 #define LFS_BLOCK_INLINE ((lfs_block_t)-2)18 rcache->block = LFS_BLOCK_NULL; in lfs_cache_drop()23 memset(pcache->buffer, 0xff, lfs->cfg->cache_size); in lfs_cache_zero()24 pcache->block = LFS_BLOCK_NULL; in lfs_cache_zero()32 if (block >= lfs->cfg->block_count || in lfs_bd_read()33 off+size > lfs->cfg->block_size) { in lfs_bd_read()40 if (pcache && block == pcache->block && in lfs_bd_read()41 off < pcache->off + pcache->size) { in lfs_bd_read()[all …]