summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2010-06-03 06:46:51 +0000
committerChris Johns <chrisj@rtems.org>2010-06-03 06:46:51 +0000
commit46969dfbb3e7fba73430e9ee5140a050b41be665 (patch)
tree7e0b40db81c7daeecb7c3232cbe66663f8d3e919 /cpukit/sapi
parent2010-06-02 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-46969dfbb3e7fba73430e9ee5140a050b41be665.tar.bz2
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.
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/include/confdefs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h
index aa6ec8932e..4fb17f8c2e 100644
--- a/cpukit/sapi/include/confdefs.h
+++ b/cpukit/sapi/include/confdefs.h
@@ -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,