summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 18:38:20 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-06-17 18:38:20 +0000
commitd25f7410d26e2f1cfa1e531122ef4e22f79a31a3 (patch)
tree7b11a0f8462642069329e83b444799084dc3232f /cpukit
parent2010-06-17 Chris Johns <chrisj@rtems.org> (diff)
downloadrtems-d25f7410d26e2f1cfa1e531122ef4e22f79a31a3.tar.bz2
2010-06-17 Joel Sherrill <joel.sherrilL@OARcorp.com>
* sapi/include/confdefs.h: Remove RTEMS_COVERAGE conditionals.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/sapi/include/confdefs.h15
2 files changed, 9 insertions, 10 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 401d124f49..ca8fef631b 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,7 @@
+2010-06-17 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ * sapi/include/confdefs.h: Remove RTEMS_COVERAGE conditionals.
+
2010-06-17 Chris Johns <chrisj@rtems.org>
* libfs/src/rfs/rtems-rfs-bitmaps.h,
diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h
index 4fb17f8c2e..c3ae9467ac 100644
--- a/cpukit/sapi/include/confdefs.h
+++ b/cpukit/sapi/include/confdefs.h
@@ -99,12 +99,11 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
/*
- * When building for coverage, we always need a mount table
+ * If the application disables the filesystem, they will not need
+ * a mount table, so do not produce one.
*/
-#if !defined(RTEMS_COVERAGE)
- #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
- #define CONFIGURE_HAS_OWN_MOUNT_TABLE
- #endif
+#ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
+ #define CONFIGURE_HAS_OWN_MOUNT_TABLE
#endif
/**
@@ -357,8 +356,7 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
/*
* DEVFS variables.
*/
- #if defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM) && \
- !defined(RTEMS_COVERAGE)
+ #if defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM)
#define CONFIGURE_MEMORY_FOR_DEVFS 0
#elif defined(CONFIGURE_FILESYSTEM_DEVFS)
#ifndef CONFIGURE_MAXIMUM_DEVICES
@@ -369,9 +367,6 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
#define CONFIGURE_MEMORY_FOR_DEVFS \
_Configure_Object_RAM(CONFIGURE_MAXIMUM_DEVICES, \
sizeof (rtems_device_name_t))
- #elif defined(RTEMS_COVERAGE)
- uint32_t rtems_device_table_size = 0;
- #define CONFIGURE_MEMORY_FOR_DEVFS 0
#else
#define CONFIGURE_MEMORY_FOR_DEVFS 0
#endif