From 7173c43715dd75ac7c586bd3b5973a0b7819ce8b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 26 Aug 2009 13:22:58 +0000 Subject: 2009-08-26 Joel Sherrill * hello/Makefile.am, hello/init.c: Simplify. * hello/system.h: Removed. --- testsuites/samples/hello/init.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'testsuites/samples/hello/init.c') diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c index e02a23cfa6..9545309e7c 100644 --- a/testsuites/samples/hello/init.c +++ b/testsuites/samples/hello/init.c @@ -20,8 +20,8 @@ * $Id$ */ -#define CONFIGURE_INIT -#include "system.h" +#include /* for device driver prototypes */ + #include #include @@ -29,8 +29,22 @@ rtems_task Init( rtems_task_argument ignored ) { +devFS_Show(); printf( "\n\n*** HELLO WORLD TEST ***\n" ); printf( "Hello World\n" ); printf( "*** END OF HELLO WORLD TEST ***\n" ); exit( 0 ); } + + +/* NOTICE: the clock driver is explicitly disabled */ +#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER +#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER + +#define CONFIGURE_MAXIMUM_TASKS 1 +#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM + +#define CONFIGURE_RTEMS_INIT_TASKS_TABLE + +#define CONFIGURE_INIT +#include -- cgit v1.2.3