2009-04-28 Chris Johns <chrisj@rtems.org>

* fileio/init.c, fileio/system.h, iostream/init.cc,
        loopback/init.c, pppd/init.c, pppd/pppdapp.c: Do not build if
        BSP_SMALL_MEMORY is defined. Remove this code once a better way is
        supported by the build system.
This commit is contained in:
Chris Johns
2009-04-28 05:04:11 +00:00
parent a263aa724d
commit c0ec0d82d3
7 changed files with 64 additions and 7 deletions

View File

@@ -36,6 +36,7 @@
#include <rtems/libcsupport.h>
#include <rtems/fsmount.h>
#if FILEIO_BUILD
/*
* Table of FAT file systems that will be mounted
* with the "fsmount" function.
@@ -725,3 +726,14 @@ rtems_shell_alias_t Shell_USERECHO_Alias = {
#include <rtems/shellconfig.h>
#endif
#else
/*
* RTEMS Startup Task
*/
rtems_task
Init (rtems_task_argument ignored)
{
puts( "\n\n*** FILE I/O SAMPLE AND TEST ***" );
puts( "\n\n*** NOT ENOUGH MEMORY TO BUILD AND RUN ***" );
}
#endif