source: rtems/c/src/lib/libbsp/shared/bsppost.c @ af03345

4.115
Last change on this file since af03345 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 602 bytes
Line 
1/*
2 *  This is a shared BSP post driver hook designed to open
3 *  /dev/console for stdin, stdout, and stderr if it exists.
4 *  Newlib will automatically associate the file descriptors
5 *  with the first three files opened.
6 *
7 *  COPYRIGHT (c) 1989-2008.
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.org/license/LICENSE.
13 */
14
15#include <rtems/libio.h>
16
17#include <bsp/bootcard.h>
18
19void bsp_postdriver_hook(void)
20{
21  (*rtems_libio_post_driver_helper)();
22}
Note: See TracBrowser for help on using the repository browser.