source: rtems/c/src/lib/libbsp/arm/beagle/startup/bspstart.c @ 7a66986

4.115
Last change on this file since 7a66986 was 7a66986, checked in by Claas Ziemke <ziemke@…>, on 08/22/12 at 12:39:02

Added BeagleBoard? BSP

Coding done in course of GSoC2012.

Commit edited to be brought up-to-date with mainline by
Ben Gras <beng@…>.

  • Property mode set to 100644
File size: 596 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup beagle
5 *
6 * @brief Startup code.
7 */
8
9/*
10 * Copyright (c) 2012 Claas Ziemke. All rights reserved.
11 *
12 *  Claas Ziemke
13 *  Kernerstrasse 11
14 *  70182 Stuttgart
15 *  Germany
16 *  <claas.ziemke@gmx.net>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.com/license/LICENSE.
21 */
22
23#include <bsp.h>
24#include <bsp/bootcard.h>
25#include <bsp/irq-generic.h>
26#include <bsp/irq.h>
27#include <bsp/linker-symbols.h>
28#include <bsp/beagle.h>
29
30void bsp_start(void)
31{
32  bsp_interrupt_initialize();
33}
Note: See TracBrowser for help on using the repository browser.