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/ChangeLog | 5 +++++ testsuites/samples/hello/Makefile.am | 2 +- testsuites/samples/hello/init.c | 18 ++++++++++++++-- testsuites/samples/hello/system.h | 40 ------------------------------------ 4 files changed, 22 insertions(+), 43 deletions(-) delete mode 100644 testsuites/samples/hello/system.h (limited to 'testsuites/samples') diff --git a/testsuites/samples/ChangeLog b/testsuites/samples/ChangeLog index 63f8b29d07..d959a0a12c 100644 --- a/testsuites/samples/ChangeLog +++ b/testsuites/samples/ChangeLog @@ -1,3 +1,8 @@ +2009-08-26 Joel Sherrill + + * hello/Makefile.am, hello/init.c: Simplify. + * hello/system.h: Removed. + 2009-08-21 Xi Yang * unlimited/test2.c: Fix spacing. diff --git a/testsuites/samples/hello/Makefile.am b/testsuites/samples/hello/Makefile.am index 7a1a2d0587..e7b019be30 100644 --- a/testsuites/samples/hello/Makefile.am +++ b/testsuites/samples/hello/Makefile.am @@ -5,7 +5,7 @@ MANAGERS = io semaphore rtems_tests_PROGRAMS = hello -hello_SOURCES = init.c system.h +hello_SOURCES = init.c dist_rtems_tests_DATA = hello.scn dist_rtems_tests_DATA += hello.doc 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 diff --git a/testsuites/samples/hello/system.h b/testsuites/samples/hello/system.h deleted file mode 100644 index 1d5ac2ae33..0000000000 --- a/testsuites/samples/hello/system.h +++ /dev/null @@ -1,40 +0,0 @@ -/* system.h - * - * This include file contains information that is included in every - * function in the test set. - * - * COPYRIGHT (c) 1989-1999. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.com/license/LICENSE. - * - * $Id$ - */ - -#include - -/* functions */ - -rtems_task Init( - rtems_task_argument argument -); - -/* configuration information */ - -#include /* for device driver prototypes */ - -/* 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_RTEMS_INIT_TASKS_TABLE - -#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM - -#include - -/* end of include file */ -- cgit v1.2.3