summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gba/startup/exit.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 19:33:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 19:33:53 +0000
commit21c9770effbd14a18c132cd8bd16442240e36802 (patch)
tree26b7e7a78afb499b9d2832fd9d406523a4751565 /c/src/lib/libbsp/arm/gba/startup/exit.c
parent2008-08-21 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-21c9770effbd14a18c132cd8bd16442240e36802.tar.bz2
2008-08-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX routine. * startup/bspclean.c: New file. * startup/exit.c: Removed.
Diffstat (limited to 'c/src/lib/libbsp/arm/gba/startup/exit.c')
-rw-r--r--c/src/lib/libbsp/arm/gba/startup/exit.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/c/src/lib/libbsp/arm/gba/startup/exit.c b/c/src/lib/libbsp/arm/gba/startup/exit.c
deleted file mode 100644
index d5fa3789ae..0000000000
--- a/c/src/lib/libbsp/arm/gba/startup/exit.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * @file exit.c
- *
- * Routines to shutdown and reboot the BSP.
- */
-/*
- * RTEMS GBA BSP
- *
- * Copyright (c) 2004 Markku Puro <markku.puro@kopteri.net>
- *
- * The license and distribution terms for this file may be
- * found in found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <stdio.h>
-#include <bsp.h>
-#include <rtems/bspIo.h>
-#include <rtems/libio.h>
-#include <gba.h>
-
-
-/**
- * @brief rtemsReboot BSP routine reboot rtems
- *
- * Input parameters: None
- *
- * Output parameters: None
- */
-void rtemsReboot (void)
-{
- asm volatile ("ldr r0, =_gba_reset");
- asm volatile ("bx r0");
-}
-
-/**
- * @brief bsp_cleanup BSP routine wait input from user for rebooting
- *
- * Normally at this point, the console driver is disconnected => we must
- * use polled output/input. This is exactly what printk does.
- *
- * @param None
- * @return None
- */
-void bsp_cleanup(void)
-{
- static const char line[]="\nEXECUTIVE SHUTDOWN! Press button to reboot...";
- printk("\n");
- printk("%s",line);
- while ( !GBA_ANY_KEY(GBA_KEY_ALL) );
- rtemsReboot();
-}