]> git.sur5r.net Git - u-boot/commitdiff
arm: zynq: Make ENV_SIZE and ENV_OFFSET optional via board file
authorMichal Simek <michal.simek@xilinx.com>
Wed, 11 Apr 2018 14:13:55 +0000 (16:13 +0200)
committerMichal Simek <michal.simek@xilinx.com>
Mon, 23 Apr 2018 11:15:32 +0000 (13:15 +0200)
Boards have an option to rewrite variable locations in their own board
files. This is necessary for qspi and nand configurations where boot
image can be bigger then 896k(current limit).

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
include/configs/zynq-common.h

index ae82a7aa96ac2d6261836335acec5400efce421a..baad8db62f90b2fcce0310a0d4ab58082aca982a 100644 (file)
 #endif
 
 /* Total Size of Environment Sector */
-#define CONFIG_ENV_SIZE                        (128 << 10)
+#ifndef CONFIG_ENV_SIZE
+# define CONFIG_ENV_SIZE                       (128 << 10)
+#endif
 
 /* Allow to overwrite serial and ethaddr */
 #define CONFIG_ENV_OVERWRITE
 /* Environment */
 #ifndef CONFIG_ENV_IS_NOWHERE
 # define CONFIG_ENV_SECT_SIZE          CONFIG_ENV_SIZE
-# define CONFIG_ENV_OFFSET             0xE0000
+# ifndef CONFIG_ENV_OFFSET
+#  define CONFIG_ENV_OFFSET            0xE0000
+# endif
 #endif
 
 /* enable preboot to be loaded before CONFIG_BOOTDELAY */