diff options
author | Anatolij Gustschin <agust@denx.de> | 2019-10-21 17:31:53 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-12-06 13:57:42 +0100 |
commit | 5c1c7c1ef81503ccae531704ac9dbd8cb41e5b49 (patch) | |
tree | e866475577278560fb785bd7c3a65f3d7cb51f53 /include/configs/imx8qxp_mek.h | |
parent | f5edb0d86dd4dc32e95120d58202470c93b1487f (diff) | |
download | u-boot-5c1c7c1ef81503ccae531704ac9dbd8cb41e5b49.tar.gz |
imx: imx8qxp_mek: increase buffer sizes and args number
The default value of CONFIG_SYS_CBSIZE is too small when we need
to input long commands or when using long kernel command line.
The default value of CONFIG_SYS_MAXARGS is too small to add a long
command line, and the kernel might not boot as intended without the
complete bootargs. Increase argument buffer sizes and the number of
arguments.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'include/configs/imx8qxp_mek.h')
-rw-r--r-- | include/configs/imx8qxp_mek.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/imx8qxp_mek.h b/include/configs/imx8qxp_mek.h index cb39bcdebf..81ac4b52f3 100644 --- a/include/configs/imx8qxp_mek.h +++ b/include/configs/imx8qxp_mek.h @@ -196,4 +196,9 @@ #define CONFIG_FEC_XCV_TYPE RGMII #define FEC_QUIRK_ENET_MAC +/* Misc configuration */ +#define CONFIG_SYS_CBSIZE 2048 +#define CONFIG_SYS_MAXARGS 64 +#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE + #endif /* __IMX8QXP_MEK_H */ |