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>
This commit is contained in:
parent
ac6a53219a
commit
d1a2f32fca
|
|
@ -57,8 +57,8 @@
|
||||||
* it has to be rounded to sector size
|
* it has to be rounded to sector size
|
||||||
*/
|
*/
|
||||||
#define CONFIG_ENV_SIZE 0x20000 /* 128k */
|
#define CONFIG_ENV_SIZE 0x20000 /* 128k */
|
||||||
#define CONFIG_ENV_ADDR 0x60000
|
#define CONFIG_ENV_ADDR 0x80000
|
||||||
#define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
|
#define CONFIG_ENV_OFFSET 0x80000 /* env starts here */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default environment variables
|
* Default environment variables
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue