diff options
author | Ed Swarthout <Ed.Swarthout@freescale.com> | 2007-06-05 12:30:52 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-06-05 13:27:34 -0500 |
commit | 32922cdc470fdfd39bea0c1c4f582d3fb340421e (patch) | |
tree | edf6cbcd35129b2634d9dc37bfee0424b7fa6b10 /doc | |
parent | b84289b595731e8851df46e893845cc1322c9b9b (diff) | |
download | u-boot-imx-32922cdc470fdfd39bea0c1c4f582d3fb340421e.zip u-boot-imx-32922cdc470fdfd39bea0c1c4f582d3fb340421e.tar.gz u-boot-imx-32922cdc470fdfd39bea0c1c4f582d3fb340421e.tar.bz2 |
mpc8641 image size cleanup
e600 does not have a bootpg restriction.
Move the version string to beginning of image at fff00000.
Resetvec.S is not needed.
Update flash copy instructions.
Add tftpflash env variable
Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.mpc8641hpcn | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/README.mpc8641hpcn b/doc/README.mpc8641hpcn index 3b88f8b..ac56cca 100644 --- a/doc/README.mpc8641hpcn +++ b/doc/README.mpc8641hpcn @@ -96,14 +96,17 @@ To Flash U-Boot into the booting bank (0xFFC00000 - 0xFFFFFFFF): tftp 1000000 u-boot.bin protect off all - erase fff00000 ffffffff - cp.b 1000000 fff00100 80000 + erase fff00000 +$filesize + cp.b 1000000 fff00000 $filesize + +or use tftpflash command: + run tftpflash To Flash U-boot into the alternative bank (0xFF800000 - 0xFFBFFFFF): tftp 1000000 u-boot.bin - erase ffb00000 ffbfffff - cp.b 1000000 ffb00100 80000 + erase ffb00000 +$filesize + cp.b 1000000 ffb00000 $filesize 4. Memory Map |