source: rtems/bsps/powerpc/gen83xx/start/uboot_support.c @ 762fa62

5
Last change on this file since 762fa62 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: 697 bytes
Line 
1/*
2 *  This file contains variables which assist the shared
3 *  U-Boot code.
4 *
5 *  COPYRIGHT (c) 1989-2008.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.org/license/LICENSE.
11 */
12
13#include <stdint.h>
14
15#include <bsp.h>
16
17#if defined(HAS_UBOOT)
18/* XXX TODO fill in with real information */
19/* Base address of U-Boot environment variables */
20const uint8_t *uboot_environment      = (const uint8_t *) 0x00000000;
21
22/* Length of area reserved for U-Boot environment variables */
23const size_t  *uboot_environment_size = (const size_t *) 0x00010000;
24#endif
Note: See TracBrowser for help on using the repository browser.