Home
last modified time | relevance | path

Searched full:version (Results 1 – 6 of 6) sorted by relevance

/littlefs-2.7.6/
D.travis.yml125 - arm-linux-gnueabi-gcc --version
126 - qemu-arm -version
154 - mips-linux-gnu-gcc --version
155 - qemu-mips -version
183 - powerpc-linux-gnu-gcc --version
184 - qemu-ppc -version
207 - valgrind --version
221 - gcc --version
257 - gcc --version
306 # Find version defined in lfs.h
[all …]
Dlfs.h19 /// Version info ///
21 // Software library version
28 // Version of On-disk data structures
350 uint32_t version; member
636 // Attempts to migrate a previous version of littlefs
639 // the previous version of littlefs and update the filesystem so it can be
640 // mounted with the current version of littlefs.
DSPEC.md354 string "littlefs", while the inline-struct tag contains version and
371 ^ ^ ^ ^ ^- version ^- block size ^- block count
386 2. **Version (32-bits)** - The version of littlefs at format time. The version
388 version, and the lower 16-bits containing the minor version.
390 This specification describes version 2.0 (`0x00020000`).
Dlfs.c397 superblock->version = lfs_fromle32(superblock->version); in lfs_superblock_fromle32()
406 superblock->version = lfs_tole32(superblock->version); in lfs_superblock_tole32()
3629 .version = LFS_DISK_VERSION, in lfs_format()
3654 // older version of littlefs that may live on disk in lfs_format()
3731 // check version in lfs_mount()
3732 uint16_t major_version = (0xffff & (superblock.version >> 16)); in lfs_mount()
3733 uint16_t minor_version = (0xffff & (superblock.version >> 0)); in lfs_mount()
3736 LFS_ERROR("Invalid version v%"PRIu16".%"PRIu16, in lfs_mount()
4254 /// Version info ///
4256 // Software library version
[all …]
DDESIGN.md1842 - In a previous version of littlefs we tried to solve this problem by going
/littlefs-2.7.6/scripts/
Dreadtree.py102 # print littlefs + version info
103 version = ('?', '?')
105 version = tuple(reversed(
107 print("%-47s%s" % ("littlefs v%s.%s" % version,