source: rtems/bsps/powerpc/gen5200/start/uboot_support.c @ a2dad96

5
Last change on this file since a2dad96 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: 630 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/* Base address of U-Boot environment variables */
19const uint8_t *uboot_environment      = (const uint8_t *)0xfff40000;
20
21/* Length of area reserved for U-Boot environment variables */
22const size_t  uboot_environment_size = 0x10000;
23#endif
Note: See TracBrowser for help on using the repository browser.