9
0
Fork 0

FS mount logic: Fix error in conditional compilation. Reported by Daniel Palmer

This commit is contained in:
Gregory Nutt 2013-11-15 07:21:52 -06:00
parent ca9fcf8152
commit 7fc70dffd9
2 changed files with 5 additions and 1 deletions

View File

@ -6052,4 +6052,7 @@
forthcoming USB host controller driver (2013-11-14).
* arch/arm/src/lpc31/lpc31_ehci.c: First cut at an EHCI driver
tailed for the LPC31 (2013-11-14).
* fs/fs_mount.c: SMART FS must be included in the conditional
compilation for the set of file systems that require block
drivers. From Daniel Palmer (2013-11-15).

View File

@ -68,7 +68,8 @@
* These file systems all require block drivers:
*/
#if defined(CONFIG_FS_FAT) || defined(CONFIG_FS_ROMFS)
#if defined(CONFIG_FS_FAT) || defined(CONFIG_FS_ROMFS) || \
defined(CONFIG_FS_SMARTFS)
# define BDFS_SUPPORT 1
#endif