source: rtems/bsps/arm/raspberrypi/start/bspstart.c @ e0dd8a5a

5
Last change on this file since e0dd8a5a was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 533 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup arm_start
5 *
6 * @brief Raspberry pi startup code.
7 */
8
9/*
10 * Copyright (c) 2013 by Alan Cudmore
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *
15 *  http://www.rtems.org/license/LICENSE
16 */
17
18#include <bsp.h>
19#include <bsp/bootcard.h>
20#include <bsp/irq-generic.h>
21#include <bsp/irq.h>
22#include <bsp/linker-symbols.h>
23#include <bsp/stackalloc.h>
24#include <bsp/raspberrypi.h>
25
26void bsp_start(void)
27{
28    bsp_interrupt_initialize();
29}
Note: See TracBrowser for help on using the repository browser.