summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen5200/startup/uboot_support.c
blob: 311f41eeda8730d9c689447bc01e23c784178891 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 *  This file contains variables which assist the shared
 *  U-Boot code.
 *
 *  COPYRIGHT (c) 1989-2008.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */

#include <stdint.h>

#include <bsp.h>

#if defined(HAS_UBOOT)
/* Base address of U-Boot environment variables */
const uint8_t *uboot_environment      = (const uint8_t *)0xfff40000;

/* Length of area reserved for U-Boot environment variables */
const size_t  uboot_environment_size = 0x10000;
#endif