2010-06-03 Chris Johns <chrisj@rtems.org>

* sapi/include/confdefs.h: PR 1543. Make default file system when
        nothing is defined IMFS not miniIMFS.
This commit is contained in:
Chris Johns
2010-06-03 06:46:51 +00:00
parent d7efb8209d
commit 46969dfbb3
2 changed files with 9 additions and 4 deletions
+4 -4
View File
@@ -447,12 +447,12 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
#ifndef CONFIGURE_HAS_OWN_MOUNT_TABLE
const rtems_filesystem_mount_table_t configuration_mount_table = {
#ifdef CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
"imfs",
#elif defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
#if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
"devfs",
#else /* using miniIMFS as base filesystem */
#elif defined(CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM)
"mimfs",
#else /* using IMFS as base filesystem */
"imfs",
#endif
RTEMS_FILESYSTEM_READ_WRITE,
NULL,