diff options
| author | Stelian Pop <stelian@popies.net> | 2008-05-08 20:52:21 +0200 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-05-10 11:32:07 +0200 | 
| commit | 86c8c8a414988c50104a3b02c29f50af2be738c0 (patch) | |
| tree | d94ab4e61bdeba01d17eda191fec31399f7aca14 | |
| parent | 96996ac25d5222611a8888968db6e53a6d3726da (diff) | |
| download | olio-uboot-2014.01-86c8c8a414988c50104a3b02c29f50af2be738c0.tar.xz olio-uboot-2014.01-86c8c8a414988c50104a3b02c29f50af2be738c0.zip | |
AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
in order to cope with the changes in DataFlash partitionning scheme
(cset c3a60cb3).
Signed-off-by: Stelian Pop <stelian@popies.net>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
| -rw-r--r-- | include/configs/at91sam9260ek.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/configs/at91sam9260ek.h b/include/configs/at91sam9260ek.h index cd5f161cb..f68e05500 100644 --- a/include/configs/at91sam9260ek.h +++ b/include/configs/at91sam9260ek.h @@ -141,7 +141,7 @@  #define CFG_ENV_OFFSET		0x4200  #define CFG_ENV_ADDR		(CFG_DATAFLASH_LOGIC_ADDR_CS0 + CFG_ENV_OFFSET)  #define CFG_ENV_SIZE		0x4200 -#define CONFIG_BOOTCOMMAND	"cp.b 0xC003DE00 0x22000000 0x200040; bootm" +#define CONFIG_BOOTCOMMAND	"cp.b 0xC0042000 0x22000000 0x210000; bootm"  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\  				"root=/dev/mtdblock0 "			\  				"mtdparts=at91_nand:-(root) "		\ @@ -155,7 +155,7 @@  #define CFG_ENV_OFFSET		0x4200  #define CFG_ENV_ADDR		(CFG_DATAFLASH_LOGIC_ADDR_CS1 + CFG_ENV_OFFSET)  #define CFG_ENV_SIZE		0x4200 -#define CONFIG_BOOTCOMMAND	"cp.b 0xD003DE00 0x22000000 0x200040; bootm" +#define CONFIG_BOOTCOMMAND	"cp.b 0xD0042000 0x22000000 0x210000; bootm"  #define CONFIG_BOOTARGS		"console=ttyS0,115200 "			\  				"root=/dev/mtdblock0 "			\  				"mtdparts=at91_nand:-(root) "		\ |