From cc7e3d1929342f9beb998933e26ce5e89d52a8fb Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Mon, 15 Jan 2024 14:46:56 +0100 Subject: [PATCH] cmd: increase default for SYS_MAXARGS The value of CONFIG SYS_MAXARGS limits the usability of the 'for' command. The current default of 16 is too low for some use case. Cf. https://bugs.launchpad.net/snap-core18/+bug/1910094 Increase the default to 64. Reported-by: Dave Jones Signed-off-by: Heinrich Schuchardt --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index 58ab357c70..06aae30df3 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -94,7 +94,7 @@ config SYS_PROMPT_HUSH_PS2 config SYS_MAXARGS int "Maximum number arguments accepted by commands" - default 16 + default 64 config SYS_XTRACE bool "Command execution tracer" -- 2.39.5