summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c')
-rw-r--r--c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c b/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c
deleted file mode 100644
index 251d47a46d..0000000000
--- a/c/src/lib/libbsp/powerpc/beatnik/startup/bspclean.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <bsp.h>
-#include <bsp/bootcard.h>
-#include <rtems/bspIo.h>
-
-void bsp_fatal_extension(
- rtems_fatal_source source,
- bool always_set_to_false,
- rtems_fatal_code error
-)
-{
- printk("fatal source: %s\n", rtems_fatal_source_text(source));
-
- if (source == RTEMS_FATAL_SOURCE_EXCEPTION) {
- rtems_exception_frame_print((const rtems_exception_frame *) error);
- }
-
- /* We can't go back to MotLoad since we blew it's memory area
- * and vectors. Just pull the reset line...
- */
- printk(
- "bsp_fatal_extension(): RTEMS terminated -- no way back to MotLoad "
- "so I reset the card\n"
- );
- bsp_reset();
-}