source: rtems/c/src/lib/libbsp/powerpc/gen83xx/startup/uboot_support.c @ f68401e

4.115
Last change on this file since f68401e was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

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