2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>

* clockdrv_shell.c: Remove unnecessary includes of rtems/libcsupport.h
	and rtems/libio.h.
	* bspstart.c: New file.
This commit is contained in:
Joel Sherrill
2008-09-16 19:10:15 +00:00
parent 8c26247841
commit ed521b6890
3 changed files with 28 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* clockdrv_shell.c: Remove unnecessary includes of rtems/libcsupport.h
and rtems/libio.h.
* bspstart.c: New file.
2008-09-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* clockdrv_shell.c: The Shared Memory Driver no longer requires the

View File

@@ -0,0 +1,22 @@
/*
* COPYRIGHT (c) 1989-2008.
* 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 <bsp.h>
#include <bsp/bootcard.h>
/*
* This routine would usually do the bulk of the system initialization.
* But if a BSP doesn't need to do anything, it can use this version.
*/
void bsp_start( void )
{
}

View File

@@ -14,7 +14,6 @@
#include <stdlib.h>
#include <bsp.h>
#include <rtems/libio.h>
#if defined(CLOCK_DRIVER_USE_FAST_IDLE) && defined(CLOCK_DRIVER_ISRS_PER_TICK)
#error "clockdrv_shell.c: fast idle and N ISRs per tick is not supported"