source: rtems/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c @ f61195b2

5
Last change on this file since f61195b2 was 6a9282d, checked in by Sebastian Huber <sebastian.huber@…>, on 12/09/16 at 09:49:49

Rename is_internal to always_set_to_false

Update #2825.

  • Property mode set to 100644
File size: 432 bytes
Line 
1#include <bsp.h>
2#include <bsp/bootcard.h>
3#include <rtems/bspIo.h>
4
5void bsp_fatal_extension(
6  rtems_fatal_source source,
7  bool always_set_to_false,
8  rtems_fatal_code error
9)
10{
11  /* We can't go back to MotLoad since we blew it's memory area
12   * and vectors. Just pull the reset line...
13   */
14  printk(
15    "bsp_fatal_extension(): RTEMS terminated -- no way back to MotLoad "
16      "so I reset the card\n"
17  );
18  bsp_reset();
19}
Note: See TracBrowser for help on using the repository browser.