diff options
author | TsiChung Liew <tsicliew@gmail.com> | 2010-03-15 19:39:21 -0500 |
---|---|---|
committer | TsiChung Liew <tsicliew@gmail.com> | 2010-03-24 11:09:39 -0500 |
commit | f26a247308568e32857a5cc054f7219510a7d44e (patch) | |
tree | a1d6a5b871aecf1c035932539ee71b196ec51bc4 | |
parent | dd9f054ede433de73b137987fb3dc066e8d24ebb (diff) | |
download | u-boot-imx-f26a247308568e32857a5cc054f7219510a7d44e.zip u-boot-imx-f26a247308568e32857a5cc054f7219510a7d44e.tar.gz u-boot-imx-f26a247308568e32857a5cc054f7219510a7d44e.tar.bz2 |
ColdFire: Fix incorrect M5253DEMO default environment
The flash location is at 0xff800000, not 0
Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
-rw-r--r-- | include/configs/M5253DEMO.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/M5253DEMO.h b/include/configs/M5253DEMO.h index 9944e12..b5af493 100644 --- a/include/configs/M5253DEMO.h +++ b/include/configs/M5253DEMO.h @@ -107,7 +107,7 @@ "upd=run load; run prog\0" \ "prog=prot off 0xff800000 0xff82ffff;" \ "era 0xff800000 0xff82ffff;" \ - "cp.b ${loadaddr} 0 ${filesize};" \ + "cp.b ${loadaddr} 0xff800000 ${filesize};" \ "save\0" \ "" #endif |