4.104.11
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 | * $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 */ |
---|
21 | const uint8_t *uboot_environment = (const char *)0xfff40000; |
---|
22 | |
---|
23 | /* Length of area reserved for U-Boot environment variables */ |
---|
24 | const size_t uboot_environment_size = 0x10000; |
---|
25 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.