From c0ec0d82d3c7206d3d2cda7cf93514f22f8ac504 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Tue, 28 Apr 2009 05:04:11 +0000 Subject: 2009-04-28 Chris Johns * 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. --- testsuites/samples/fileio/init.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'testsuites/samples/fileio/init.c') diff --git a/testsuites/samples/fileio/init.c b/testsuites/samples/fileio/init.c index b49334d6bf..5af153a07e 100644 --- a/testsuites/samples/fileio/init.c +++ b/testsuites/samples/fileio/init.c @@ -36,6 +36,7 @@ #include #include +#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 #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 -- cgit v1.2.3