From: TsiChung Liew Date: Tue, 16 Mar 2010 00:39:21 +0000 (-0500) Subject: ColdFire: Fix incorrect M5253DEMO default environment X-Git-Tag: v2010.06-rc1~139^2~7^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f26a247308568e32857a5cc054f7219510a7d44e;p=platform%2Fkernel%2Fu-boot.git ColdFire: Fix incorrect M5253DEMO default environment The flash location is at 0xff800000, not 0 Signed-off-by: TsiChung Liew --- 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