diff options
author | Michal Simek <michal.simek@xilinx.com> | 2014-04-25 13:33:19 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2014-05-14 07:46:40 +0200 |
commit | 841426ad9f19b7bcf4add8329484ebad672daa9c (patch) | |
tree | a534fb0a22681661e92b21fed268b779096de19f | |
parent | 2e38a9067227ca005e61afc3337c32ae92a4d0c4 (diff) | |
download | u-boot-imx-841426ad9f19b7bcf4add8329484ebad672daa9c.zip u-boot-imx-841426ad9f19b7bcf4add8329484ebad672daa9c.tar.gz u-boot-imx-841426ad9f19b7bcf4add8329484ebad672daa9c.tar.bz2 |
ARM: zynq: Extend maximum number of command arguments
15 was too small for variables stored in file on MMC.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r-- | include/configs/zynq-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index 09d6c55..d2149b3 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -188,7 +188,7 @@ #define CONFIG_SYS_LONGHELP #define CONFIG_CLOCKS #define CONFIG_CMD_CLK -#define CONFIG_SYS_MAXARGS 15 /* max number of command args */ +#define CONFIG_SYS_MAXARGS 32 /* max number of command args */ #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ sizeof(CONFIG_SYS_PROMPT) + 16) |