source: rtems/c/src/lib/libbsp/i386/pc386/startup/bspreset.c @ dd6992fd

5
Last change on this file since dd6992fd was dd6992fd, checked in by Joel Sherrill <joel@…>, on 07/28/17 at 19:15:36

Remove Edison BSP.

Intel has obsoleted this hardware and the BSP was never completed.

closes #3086.

  • Property mode set to 100644
File size: 423 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2008.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.org/license/LICENSE.
8 */
9
10#include <rtems.h>
11#include <bsp.h>
12#include <bsp/bootcard.h>
13
14void bsp_reset(void)
15{
16  /* shutdown and reboot */
17  *((uint32_t*)0xff009000) = 0xf3;  /* use watchdog */
18}
Note: See TracBrowser for help on using the repository browser.