forked from Imagelibrary/rtems
2009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* hello/Makefile.am, hello/init.c: Simplify. * hello/system.h: Removed.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2009-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* hello/Makefile.am, hello/init.c: Simplify.
|
||||||
|
* hello/system.h: Removed.
|
||||||
|
|
||||||
2009-08-21 Xi Yang <hiyangxi@gmail.com>
|
2009-08-21 Xi Yang <hiyangxi@gmail.com>
|
||||||
|
|
||||||
* unlimited/test2.c: Fix spacing.
|
* unlimited/test2.c: Fix spacing.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
MANAGERS = io semaphore
|
MANAGERS = io semaphore
|
||||||
|
|
||||||
rtems_tests_PROGRAMS = hello
|
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.scn
|
||||||
dist_rtems_tests_DATA += hello.doc
|
dist_rtems_tests_DATA += hello.doc
|
||||||
|
|||||||
@@ -20,8 +20,8 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define CONFIGURE_INIT
|
#include <bsp.h> /* for device driver prototypes */
|
||||||
#include "system.h"
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
@@ -29,8 +29,22 @@ rtems_task Init(
|
|||||||
rtems_task_argument ignored
|
rtems_task_argument ignored
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
devFS_Show();
|
||||||
printf( "\n\n*** HELLO WORLD TEST ***\n" );
|
printf( "\n\n*** HELLO WORLD TEST ***\n" );
|
||||||
printf( "Hello World\n" );
|
printf( "Hello World\n" );
|
||||||
printf( "*** END OF HELLO WORLD TEST ***\n" );
|
printf( "*** END OF HELLO WORLD TEST ***\n" );
|
||||||
exit( 0 );
|
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 <rtems/confdefs.h>
|
||||||
|
|||||||
@@ -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 <rtems.h>
|
|
||||||
|
|
||||||
/* functions */
|
|
||||||
|
|
||||||
rtems_task Init(
|
|
||||||
rtems_task_argument argument
|
|
||||||
);
|
|
||||||
|
|
||||||
/* configuration information */
|
|
||||||
|
|
||||||
#include <bsp.h> /* 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 <rtems/confdefs.h>
|
|
||||||
|
|
||||||
/* end of include file */
|
|
||||||
Reference in New Issue
Block a user