diff options
author | Jagannadha Sutradharudu Teki <jagannadha.sutradharudu-teki@xilinx.com> | 2014-01-09 01:48:23 +0530 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-01-10 15:18:33 +0100 |
commit | 18eee22f4cd9f864a3986f54c5af14040e093cbe (patch) | |
tree | d9dd6d33316f9bb7a53fd4cfd637027b75f7ace5 | |
parent | e83f61a6b3c1123b5fede849cd2a426df1d3b9d1 (diff) | |
download | u-boot-imx-18eee22f4cd9f864a3986f54c5af14040e093cbe.zip u-boot-imx-18eee22f4cd9f864a3986f54c5af14040e093cbe.tar.gz u-boot-imx-18eee22f4cd9f864a3986f54c5af14040e093cbe.tar.bz2 |
zynq-common: Change Env. Sector size to 128Kb
Changed Env. Sector size from 0x10000 to 128Kb
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
-rw-r--r-- | include/configs/zynq-common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index 1eaf17d..402009e 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -129,8 +129,10 @@ #define CONFIG_BOOTP_HOSTNAME #define CONFIG_BOOTP_MAY_FAIL +/* Total Size of Environment Sector */ +#define CONFIG_ENV_SIZE (128 << 10) + /* Environment */ -#define CONFIG_ENV_SIZE 0x10000 /* Env. sector size */ #define CONFIG_ENV_IS_NOWHERE /* Default environment */ |