fs: Update FatFs Kconfig names

Modified the Kconfig flag names to identify external FS
with source. This is required to differentiate between
additional external Fat FS code tht may be added in future.

Jira: ZEP-285
Change-Id: Ief4d11f57494fa1f7ba234182b8b922bc82575cc
Signed-off-by: Ramesh Thomas <ramesh.thomas@intel.com>
This commit is contained in:
Ramesh Thomas 2016-06-03 13:42:45 -07:00 committed by Andrew Boie
commit 6eb103ec7d
4 changed files with 10 additions and 9 deletions

View file

@ -1 +1 @@
obj-$(CONFIG_FAT_FILESYSTEM) += fat/ obj-$(CONFIG_FAT_FILESYSTEM_ELM) += fat/

View file

@ -1,2 +1,2 @@
obj-$(CONFIG_FAT_FILESYSTEM) += ff.o obj-$(CONFIG_FAT_FILESYSTEM_ELM) += ff.o
obj-$(CONFIG_FAT_FILESYSTEM) += diskio.o obj-$(CONFIG_FAT_FILESYSTEM_ELM) += diskio.o

View file

@ -1,6 +1,7 @@
config FAT_FILESYSTEM config FAT_FILESYSTEM_ELM
bool "Enable FAT File System" bool "ELM FAT File System"
default n depends on FILE_SYSTEM_FAT
help default y
Enable FAT File system. help
Use the ELM FAT File system implementation.

View file

@ -1,3 +1,3 @@
ifdef CONFIG_FAT_FILESYSTEM ifdef CONFIG_FAT_FILESYSTEM_ELM
ZEPHYRINCLUDE += -I$(srctree)/ext/fs/fat/include ZEPHYRINCLUDE += -I$(srctree)/ext/fs/fat/include
endif endif