mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 22:32:44 +01:00
d475c97692
This release bumps the on-disk minor version of littlefs from lfs2.0 -> lfs2.1. This change is backwards-compatible, but after the first write with the new version, the image on disk will no longer be mountable by older versions of littlefs.
18 lines
388 B
Makefile
18 lines
388 B
Makefile
PKG_NAME=littlefs2
|
|
PKG_URL=https://github.com/ARMmbed/littlefs.git
|
|
# v2.6
|
|
PKG_VERSION=66f07563c333a6cfe25e51633ded6851568a0d49
|
|
PKG_LICENSE=Apache-2.0
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
CFLAGS += -Wno-format
|
|
|
|
# Disable debug printing
|
|
ifneq ($(DEVELHELP),1)
|
|
CFLAGS += -DLFS_NO_DEBUG -DLFS_NO_WARN -DLFS_NO_ERROR
|
|
endif
|
|
|
|
all:
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR) -f $(RIOTBASE)/Makefile.base
|