upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
647 B
16 lines
647 B
19 years ago
|
The configuration for the AMCC 440EP eval board "Bamboo" was changed
|
||
|
to only use 384 kbytes of FLASH for the U-Boot image. This way the
|
||
|
redundant environment can be saved in the remaining 2 sectors of the
|
||
|
same flash chip.
|
||
|
|
||
|
Caution: With an upgrade from an earlier U-Boot version the current
|
||
|
environment will be erased since the environment is now saved in
|
||
|
different sectors. By using the following command the environment can
|
||
|
be saved after upgrading the U-Boot image and *before* resetting the
|
||
|
board:
|
||
|
|
||
|
setenv recover_env 'prot off FFF80000 FFF9FFFF;era FFF80000 FFF9FFFF;' \
|
||
|
'cp.b FFF60000 FFF80000 20000'
|
||
|
|
||
|
2006-07-27, Stefan Roese <sr@denx.de>
|