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:
parent
0766d3b921
commit
6eb103ec7d
4 changed files with 10 additions and 9 deletions
|
@ -1 +1 @@
|
|||
obj-$(CONFIG_FAT_FILESYSTEM) += fat/
|
||||
obj-$(CONFIG_FAT_FILESYSTEM_ELM) += fat/
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
obj-$(CONFIG_FAT_FILESYSTEM) += ff.o
|
||||
obj-$(CONFIG_FAT_FILESYSTEM) += diskio.o
|
||||
obj-$(CONFIG_FAT_FILESYSTEM_ELM) += ff.o
|
||||
obj-$(CONFIG_FAT_FILESYSTEM_ELM) += diskio.o
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
config FAT_FILESYSTEM
|
||||
bool "Enable FAT File System"
|
||||
default n
|
||||
help
|
||||
Enable FAT File system.
|
||||
config FAT_FILESYSTEM_ELM
|
||||
bool "ELM FAT File System"
|
||||
depends on FILE_SYSTEM_FAT
|
||||
default y
|
||||
help
|
||||
Use the ELM FAT File system implementation.
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ifdef CONFIG_FAT_FILESYSTEM
|
||||
ifdef CONFIG_FAT_FILESYSTEM_ELM
|
||||
ZEPHYRINCLUDE += -I$(srctree)/ext/fs/fat/include
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue