mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
tegra: Increase maximum arguments to 32
When setting up large environment variables we can exceed 16 arguemnts. Increase this to avoid problems. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Warren <twarren@nvidia.com>
This commit is contained in:
parent
057772b761
commit
0859b49d12
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@
|
||||||
/* Print Buffer Size */
|
/* Print Buffer Size */
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
|
||||||
sizeof(CONFIG_SYS_PROMPT) + 16)
|
sizeof(CONFIG_SYS_PROMPT) + 16)
|
||||||
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
|
||||||
/* Boot Argument Buffer Size */
|
/* Boot Argument Buffer Size */
|
||||||
#define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
|
#define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue