forked from Imagelibrary/rtems
2008-12-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/confdefs.h: Add disable of pipes by default since they use resources which are otherwise not accounted for. Eventually the resources will have to be properly configured.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2008-12-01 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* sapi/include/confdefs.h: Add disable of pipes by default since they
|
||||||
|
use resources which are otherwise not accounted for. Eventually the
|
||||||
|
resources will have to be properly configured.
|
||||||
|
|
||||||
2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com>
|
2008-12-01 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
* libfs/Makefile.am: Add stub for devide filesystem for unix port.
|
* libfs/Makefile.am: Add stub for devide filesystem for unix port.
|
||||||
|
|||||||
@@ -205,6 +205,17 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
|
|||||||
#endif /* CONFIGURE_INIT */
|
#endif /* CONFIGURE_INIT */
|
||||||
|
|
||||||
#ifdef CONFIGURE_INIT
|
#ifdef CONFIGURE_INIT
|
||||||
|
/**
|
||||||
|
* This disables the inclusion of pipe support in the full IMFS.
|
||||||
|
*/
|
||||||
|
#if !defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
|
||||||
|
#if defined(CONFIGURE_PIPES_ENABLED)
|
||||||
|
bool rtems_pipe_configured = true;
|
||||||
|
#else
|
||||||
|
bool rtems_pipe_configured = false;
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef CONFIGURE_HAS_OWN_MOUNT_TABLE
|
#ifndef CONFIGURE_HAS_OWN_MOUNT_TABLE
|
||||||
const rtems_filesystem_mount_table_t configuration_mount_table = {
|
const rtems_filesystem_mount_table_t configuration_mount_table = {
|
||||||
#ifdef CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
|
#ifdef CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
|
||||||
|
|||||||
Reference in New Issue
Block a user