source: rtems/c/src/lib/libbsp/arm/raspberrypi/startup/bspstarthooks.c @ df40cc9

4.115
Last change on this file since df40cc9 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 774 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup arm_start
5 *
6 * @brief Rasberry Pi startup code.
7 */
8
9/*
10 * Copyright (c) 2013. Hesham AL-Matary
11 * Copyright (c) 2013 by Alan Cudmore
12 * based on work by:
13 * Copyright (c) 2009
14 * embedded brains GmbH
15 * Obere Lagerstr. 30
16 * D-82178 Puchheim
17 * Germany
18 * <rtems@embedded-brains.de>
19 *
20 * The license and distribution terms for this file may be
21 * found in the file LICENSE in this distribution or at
22 * http://www.rtems.org/license/LICENSE
23 */
24
25#include <bspopts.h>
26#include <bsp/start.h>
27#include <bsp/raspberrypi.h>
28#include <bsp/mm.h>
29
30void BSP_START_TEXT_SECTION bsp_start_hook_0(void)
31{
32}
33
34
35void BSP_START_TEXT_SECTION bsp_start_hook_1(void)
36{
37  bsp_start_copy_sections();
38  bsp_memory_management_initialize();
39  bsp_start_clear_bss();
40}
Note: See TracBrowser for help on using the repository browser.