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

4.115
Last change on this file since 98eb7e78 was 98eb7e78, checked in by Daniel Ramirez <javamonn@…>, on 11/26/13 at 00:14:28

raspberrypi doxygen refactoring

  • 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.com/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.