diff options
author | wdenk <wdenk> | 2005-01-09 17:12:27 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-01-09 17:12:27 +0000 |
commit | a1191902cab72b9f7127365fac39a1e1d5c9abda (patch) | |
tree | 2baffb8ff9c965e0bdaaa4f047a4a3b21aff27a3 /board/xilinx/xilinx_iic | |
parent | 15c7a8efd2f7275e5b3249aac305f2598a998645 (diff) | |
download | u-boot-imx-a1191902cab72b9f7127365fac39a1e1d5c9abda.zip u-boot-imx-a1191902cab72b9f7127365fac39a1e1d5c9abda.tar.gz u-boot-imx-a1191902cab72b9f7127365fac39a1e1d5c9abda.tar.bz2 |
* Patch by Jon Loeliger, 02 Sep 2004:
Reset monitor size back to 256 so environment can be written
to flash on MPC85xx ADS and CDS releases.
* Patch by Paolo Broggini, 02 Sep 2004:
Make BSS clearing on ARM systems more robust
* Patch by Yue Hu and Joe, 01 Sep 2004:
- add PCI support for ixp425;
- add EEPRO100 suppor tfor ixdp425 board.
* Fix problem with protected sector detection in driver/cfi_flash.c
Diffstat (limited to 'board/xilinx/xilinx_iic')
-rw-r--r-- | board/xilinx/xilinx_iic/iic_adapter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/xilinx_iic/iic_adapter.c b/board/xilinx/xilinx_iic/iic_adapter.c index 0b7de7b..5ad4a0c 100644 --- a/board/xilinx/xilinx_iic/iic_adapter.c +++ b/board/xilinx/xilinx_iic/iic_adapter.c @@ -329,7 +329,7 @@ convert_env(void) if (s != NULL) { sprintf(temp, "%c%c.%c%c.%c%c.%c%c.%c%c.%c%c", s[0], s[1], s[ 2], s[ 3], - s[4], s[5], s[ 6], s[ 7], + s[4], s[5], s[ 6], s[ 7], s[8], s[9], s[10], s[11] ); setenv("ethaddr", temp); setenv("E", NULL); |