summaryrefslogtreecommitdiffstats
path: root/bsps/shared/start
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-17 06:19:17 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-20 09:49:35 +0200
commit0b93d4f843caa9228ae0a89a1692bf99a2a82f9a (patch)
treea5ec814c7aec0483d8688549ff0659169a192c10 /bsps/shared/start
parentbsps: Move bspreset_loop.c to bsps (diff)
downloadrtems-0b93d4f843caa9228ae0a89a1692bf99a2a82f9a.tar.bz2
bsps: Move bspstart.c to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'bsps/shared/start')
-rw-r--r--bsps/shared/start/bspstart-empty.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/bsps/shared/start/bspstart-empty.c b/bsps/shared/start/bspstart-empty.c
new file mode 100644
index 0000000000..2bc1526bfc
--- /dev/null
+++ b/bsps/shared/start/bspstart-empty.c
@@ -0,0 +1,20 @@
+/*
+ * COPYRIGHT (c) 1989-2008.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include <bsp.h>
+#include <bsp/bootcard.h>
+
+/*
+ * This routine would usually do the bulk of the system initialization.
+ * But if a BSP doesn't need to do anything, it can use this version.
+ */
+
+void bsp_start( void )
+{
+}