2017-05-16 18:59:37 +00:00
|
|
|
LICENSE := BSD
|
2018-04-16 09:17:21 +00:00
|
|
|
VERSION := 0.13b
|
2017-05-16 18:59:37 +00:00
|
|
|
DOWNLOADS := fatfs.archive
|
|
|
|
|
2018-04-16 09:17:21 +00:00
|
|
|
URL(fatfs) := http://www.elm-chan.org/fsw/ff/arc/ff13b.zip
|
2018-11-16 14:43:45 +00:00
|
|
|
SHA(fatfs) := 43a577724e5595d73c643891cb2959919885b458149794a085a98254784f5a9b
|
2017-05-16 18:59:37 +00:00
|
|
|
DIR(fatfs) := src/lib/fatfs
|
|
|
|
|
|
|
|
DIRS := include/fatfs
|
|
|
|
DIR_CONTENT(include/fatfs) := \
|
2018-02-08 14:28:26 +00:00
|
|
|
$(addprefix src/lib/fatfs/source/, ff.h diskio.h integer.h ffconf.h)
|
|
|
|
|
|
|
|
default: edit_conf
|
|
|
|
|
|
|
|
edit_conf: src/lib/fatfs/source/ffconf.h
|
|
|
|
@$(MSG_GENERATE)$(notdir $<)
|
|
|
|
$(VERBOSE)sed \
|
|
|
|
-e 's/define FF_USE_LABEL.*/define FF_USE_LABEL 1/' \
|
|
|
|
-e 's/define FF_CODE_PAGE.*/define FF_CODE_PAGE 0/' \
|
|
|
|
-e 's/define FF_USE_LFN.*/define FF_USE_LFN 2/' \
|
|
|
|
-e 's/define FF_FS_RPATH.*/define FF_FS_RPATH 1/' \
|
|
|
|
-e 's/define FF_VOLUMES.*/define FF_VOLUMES 10/' \
|
|
|
|
-e 's/define FF_MAX_SS.*/define FF_MAX_SS 4096/' \
|
|
|
|
-e 's/define FF_FS_EXFAT.*/define FF_FS_EXFAT 1/' \
|
|
|
|
-e 's/define FF_FS_NORTC.*/define FF_FS_NORTC 1/' \
|
|
|
|
-i $<
|
|
|
|
|
|
|
|
src/lib/fatfs/source/ffconf.h: $(DOWNLOADS)
|