mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
49e609a631
R0.14b (April 17, 2021) Made FatFs uses standard library <string.h> for copy, compare and search instead of built-in string functions. Added support for long long integer and floating point to f_printf(). (FF_STRF_LLI and FF_STRF_FP) Made path name parser ignores the terminating separator to allow "dir/". Improved the compatibility in Unix style path name feature. Fixed the file gets dead-locked when f_open() failed with some conditions. (appeared at R0.12a) Fixed f_mkfs() can create wrong exFAT volume due to a timing dependent error. (appeared at R0.12) Fixed code page 855 cannot be set by f_setcp(). (appeared at R0.13) Fixed some compiler warnings. - http://elm-chan.org/fsw/ff/updates.txt
14 lines
415 B
Makefile
14 lines
415 B
Makefile
PKG_NAME=fatfs
|
|
# upstream server is very unreliable, instead host the extracted
|
|
# .zip file on GitHub and apply only the upstream patches
|
|
PKG_URL=https://github.com/RIOT-OS/FatFS
|
|
PKG_VERSION=246c97b1eb7f1900eb00d5ed7e3bf4cdb4558039 # r0.14b
|
|
PKG_LICENSE=BSD-1-Clause
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
CFLAGS += -Wno-overflow
|
|
|
|
all:
|
|
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/source -f $(RIOTBASE)/Makefile.base MODULE=fatfs
|