From patchwork Sat Sep 22 07:18:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot,v2,4/5] Fix env address for Sheevaplug board Date: Fri, 21 Sep 2012 21:18:09 -0000 From: DrEagle X-Patchwork-Id: 186104 Message-Id: <505D6631.70205@doukki.net> To: DrEagle Cc: Lior Amsalem , "u-boot@lists.denx.de" , uboot@doukki.net Fix env address for Sheevaplug board Move env address and offset from 0x60000 to 0x80000 Signed-off-by: drEagle --- include/configs/sheevaplug.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index 7d710bf..a10e825 100644 --- a/include/configs/sheevaplug.h +++ b/include/configs/sheevaplug.h @@ -71,9 +71,8 @@ * it has to be rounded to sector size */ #define CONFIG_ENV_SIZE 0x20000 /* 128k */ -#define CONFIG_ENV_ADDR 0x60000 -#define CONFIG_ENV_OFFSET 0x60000 /* env starts here */ - +#define CONFIG_ENV_ADDR 0x80000 +#define CONFIG_ENV_OFFSET 0x80000 /* env starts here */ /* * Default environment variables */