summaryrefslogtreecommitdiffstats
path: root/include/configs/dockstar.h
diff options
context:
space:
mode:
authorEric Cooper <ecc@cmu.edu>2015-10-12 19:18:52 -0400
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2015-10-19 07:28:54 +0200
commitd1a2f32fca16ce0ec01b3447cc4755a17aca7f0f (patch)
treeef94a9fa264abdd791d7b79bb63da60ebdae72db /include/configs/dockstar.h
parentac6a53219a1bf5bd30b754d6d3f04f26e3921d15 (diff)
downloadtalos-obmc-uboot-d1a2f32fca16ce0ec01b3447cc4755a17aca7f0f.tar.gz
talos-obmc-uboot-d1a2f32fca16ce0ec01b3447cc4755a17aca7f0f.zip
ARM: dockstar: move start of environment area
The default dockstar configuration for U-Boot currently causes it to overrun the environment area, so that a "saveenv" command bricks the device. This patch moves the environment to a higher address to avoid that. Signed-off-by: Eric Cooper <ecc@cmu.edu>
Diffstat (limited to 'include/configs/dockstar.h')
-rw-r--r--include/configs/dockstar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/dockstar.h b/include/configs/dockstar.h
index a62f4e3d3b..6ebd703d32 100644
--- a/include/configs/dockstar.h
+++ b/include/configs/dockstar.h
@@ -57,8 +57,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
OpenPOWER on IntegriCloud