summaryrefslogtreecommitdiffstats
path: root/cpukit
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
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')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/sapi/include/confdefs.h8
2 files changed, 9 insertions, 4 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 23e0cc9f48..f466696f16 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
2010-06-01 Chris Johns <chrisj@rtems.org>
* libcsupport/include/rtems/libio.h: Make the struct name the same
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,