source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/startup/bspstart.c @ eb3923b

4.104.115
Last change on this file since eb3923b was eb3923b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/14/08 at 22:03:54

2008-09-14 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, startup/bspstart.c: Create bsp_get_work_area() into its own file and use BSP Framework to perform more initialization.
  • startup/bspgetworkarea.c: New file.
  • startup/main.c: Removed.
  • Property mode set to 100644
File size: 652 bytes
Line 
1/*
2 *  This routine starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#include <string.h>
18
19#include <bsp.h>
20
21/*
22 *  bsp_start
23 *
24 *  This routine does the bulk of the system initialization.
25 */
26
27void bsp_start( void )
28{
29}
Note: See TracBrowser for help on using the repository browser.