diff options
author | Stefan Roese <sr@denx.de> | 2006-06-06 10:59:12 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2006-06-06 10:59:12 +0200 |
commit | 4526c87eeca107d5dba69a449b6c8bc68d1b2b35 (patch) | |
tree | dd6905593c093f25a5517ff8294783d1f6d7a7d8 /include/configs/pcs440ep.h | |
parent | 2fd9eb509ddd557550214d472ec6170761e0c7d6 (diff) | |
download | u-boot-imx-4526c87eeca107d5dba69a449b6c8bc68d1b2b35.zip u-boot-imx-4526c87eeca107d5dba69a449b6c8bc68d1b2b35.tar.gz u-boot-imx-4526c87eeca107d5dba69a449b6c8bc68d1b2b35.tar.bz2 |
Update PCS440EP port to fit into one flash device (incl. environment)
Patch by Stefan Roese, 06 Jun 2006
Diffstat (limited to 'include/configs/pcs440ep.h')
-rw-r--r-- | include/configs/pcs440ep.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/pcs440ep.h b/include/configs/pcs440ep.h index 854809d..ec7a41b 100644 --- a/include/configs/pcs440ep.h +++ b/include/configs/pcs440ep.h @@ -42,7 +42,7 @@ * Base addresses -- Note these are effective addresses where the * actual resources get mapped (not physical addresses) *----------------------------------------------------------------------*/ -#define CFG_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Monitor */ +#define CFG_MONITOR_LEN 0x60000 /* Reserve 384 kB for Monitor */ #define CFG_MALLOC_LEN (256 * 1024) /* Reserve 256 kB for malloc() */ #define CFG_MONITOR_BASE (-CFG_MONITOR_LEN) #define CFG_SDRAM_BASE 0x00000000 /* _must_ be 0 */ @@ -160,8 +160,8 @@ "kernel_addr=fff00000\0" \ "ramdisk_addr=fff00000\0" \ "load=tftp 100000 /tftpboot/pcs440ep/u-boot.bin\0" \ - "update=protect off fff80000 ffffffff;era fff80000 ffffffff;" \ - "cp.b 100000 fff80000 80000;" \ + "update=protect off fffa0000 ffffffff;era fffa0000 ffffffff;" \ + "cp.b 100000 fffa0000 60000;" \ "setenv filesize;saveenv\0" \ "upd=run load;run update\0" \ "" |