This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
469ddab780
zephyr
/
subsys
/
fs
/
Makefile
3 lines
85 B
Makefile
Raw
Normal View
History
Unescape
Escape
fs: Add simple shell support Add a simple shell that allows exploring the contents of the file system. Jira: ZEP-1235 Change-Id: Iaa49f0be18980dd740e9552ddf4761196a818884 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
2016-11-08 16:21:37 +08:00
obj-$(CONFIG_FILE_SYSTEM_SHELL)
+=
shell.o
fs: expose generic ramdisk/flash disk access functions This patch removes "FAT" from files names, config names and symbol names so as to avoid confusion, when other modules use them in a more generic way. Also flash_disk_access.c and ram_disk_access.c now exports generic disk_access symbols as defined in include/disk_access.h rather than FAT specific ones in fs/fat_diskio.h. Thus modules like USB which need to use disk_access interface is not dependent on symbols from ELMChan FAT module. Also fat_diskio.h is removed. Further the shim between ELM chan and Zephyr is modified as per these changes. Change-Id: Ifd80f14a629e467ee9c7a9aaff8a4896eed11982 Signed-off-by: Jithu Joseph <jithu.joseph@intel.com>
2016-11-02 10:24:25 +08:00
obj-$(CONFIG_FILE_SYSTEM_FAT)
+=
fat_fs.o