imx: imx8qxp_mek: increase buffer sizes and args number
authorAnatolij Gustschin <agust@denx.de>
Mon, 21 Oct 2019 15:31:53 +0000 (17:31 +0200)
committerStefano Babic <sbabic@denx.de>
Fri, 6 Dec 2019 12:57:42 +0000 (13:57 +0100)
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>
include/configs/imx8qxp_mek.h

index cb39bcdebf5d8ba8d9fbef3162a70b452f98f955..81ac4b52f3b2c65e42e97f323c8d79925d64a964 100644 (file)
 #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 */