mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6991b0975d
- Changed user provided synchronization functions in order to completely eliminate the platform dependency from FatFs code. - Fixed a potential error in f_mount when FF_FS_REENTRANT. - Fixed file lock control FF_FS_LOCK is not mutal excluded when FF_FS_REENTRANT && FF_VOLUMES > 1 is true. - Fixed f_mkfs creates broken exFAT volume when the size of volume is >= 2^32 sectors. - Fixed string functions cannot write the unicode characters not in BMP when FF_LFN_UNICODE == 2 (UTF-8). - Fixed a compatibility issue in identification of GPT header.
15 lines
414 B
Makefile
15 lines
414 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
|
|
# r0.15
|
|
PKG_VERSION=dab28e92fb4a2bea604771ede126251b9d35692a
|
|
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
|