source: rtems/c/src/lib/libbsp/powerpc/gen5200/startup/uboot_support.c @ 5c2e2bd8

4.104.115
Last change on this file since 5c2e2bd8 was 5c2e2bd8, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 03/27/10 at 20:39:01

remove some warnings

  • Property mode set to 100644
File size: 642 bytes
RevLine 
[6e2fcea]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.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <stdint.h>
16
17#include <bsp.h>
18
19#if defined(HAS_UBOOT)
20/* Base address of U-Boot environment variables */
[5c2e2bd8]21const uint8_t *uboot_environment      = (const uint8_t *)0xfff40000;
[6e2fcea]22
23/* Length of area reserved for U-Boot environment variables */
[beb13a4]24const size_t  uboot_environment_size = 0x10000;
[6e2fcea]25#endif
Note: See TracBrowser for help on using the repository browser.