summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/beagle/startup/bspstart.c
diff options
context:
space:
mode:
authorClaas Ziemke <ziemke@irs.uni-stuttgart.de>2012-08-22 14:39:02 +0200
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-11-03 14:19:47 -0600
commit7a669866eea8b66b87b22015b793b5ea4ff950c1 (patch)
treef7faffb2cd20b45894ddabbc60f1a0e5ee96403d /c/src/lib/libbsp/arm/beagle/startup/bspstart.c
parentAdd some generic ARM am335x and omap definitions (diff)
downloadrtems-7a669866eea8b66b87b22015b793b5ea4ff950c1.tar.bz2
Added BeagleBoard BSP
Coding done in course of GSoC2012. Commit edited to be brought up-to-date with mainline by Ben Gras <beng@shrike-systems.com>.
Diffstat (limited to 'c/src/lib/libbsp/arm/beagle/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/arm/beagle/startup/bspstart.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/beagle/startup/bspstart.c b/c/src/lib/libbsp/arm/beagle/startup/bspstart.c
new file mode 100644
index 0000000000..9cdd04a8fb
--- /dev/null
+++ b/c/src/lib/libbsp/arm/beagle/startup/bspstart.c
@@ -0,0 +1,33 @@
+/**
+ * @file
+ *
+ * @ingroup beagle
+ *
+ * @brief Startup code.
+ */
+
+/*
+ * Copyright (c) 2012 Claas Ziemke. All rights reserved.
+ *
+ * Claas Ziemke
+ * Kernerstrasse 11
+ * 70182 Stuttgart
+ * Germany
+ * <claas.ziemke@gmx.net>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#include <bsp.h>
+#include <bsp/bootcard.h>
+#include <bsp/irq-generic.h>
+#include <bsp/irq.h>
+#include <bsp/linker-symbols.h>
+#include <bsp/beagle.h>
+
+void bsp_start(void)
+{
+ bsp_interrupt_initialize();
+}